-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.24 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
57
58
59
60
61
62
63
64
{
"name": "sp2",
"version": "0.1.0",
"private": true,
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"compromise": "^11.13.0",
"debounce": "^1.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"node": "^11.6.0",
"note": "^1.2.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"react-typist": "^2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"format": "prettier --write",
"lint": "tslint --project tsconfig.json",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"yarn lint",
"git add"
],
"*.{css,md,json,yml}": [
"yarn format",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.7",
"@types/debounce": "^1.2.0",
"@types/node": "^10.12.18",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"prettier": "^1.15.3",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
}
}