-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "qicoo-front",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.28.0",
"axios-retry": "^3.1.2",
"bootstrap": "^4.3.1",
"npm": "^6.12.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router": "^5.1.1",
"react-scripts-ts": "3.1.0",
"redux": "^4.0.1",
"uuid": "^3.3.2"
},
"scripts": {
"format": "prettier --single-quote --trailing-comma es5 --write",
"precommit": "lint-staged",
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/bootstrap": "^4.1.2",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.11",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.10",
"@types/uuid": "^3.4.4",
"husky": "^1.2.0",
"jquery": "^3.4.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"npm run format",
"git add"
]
}
}