-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "react-scaffold",
"author": {
"name": "starriv",
"email": "[email protected]"
},
"version": "2.0.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.2.1",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"mobx-utils": "^5.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.2",
"reactstrap": "^6.5.0"
},
"devDependencies": {
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"stylelint-prettier": "^1.0.5",
"stylelint-config-prettier": "^4.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint-fix": "eslint --config .eslintrc --fix src/",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"husky": {
"hooks": {
"pre-commit": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint-check",
"git add ."
]
}
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}