-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
49
50
51
52
53
54
55
56
{
"name": "trainees-monitor-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.9.1",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"jwt-decode": "^2.2.0",
"moment": "^2.22.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "2.17.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"universal-cookie": "^3.0.4"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"lint": "tslint -c tslint.json -p tsconfig.json",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier --config ./.prettierrc --write \"src/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm-run-all lint-staged lint build test"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/jest": "^23.3.1",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^10.9.4",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^6.0.7",
"@types/react-router-dom": "^4.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
}
}