-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
65
66
67
68
69
70
71
{
"private": true,
"scripts": {
"start": "teapack dev",
"build": "teapack build",
"lint": "eslint --cache",
"analyze": "cross-env ANALYZE=1 roadhog build",
"lint:fix": "eslint src/**/*.js --cache --fix",
"precommit": "lint-staged"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-rc.1",
"@material-ui/core": "^4.0.1",
"@material-ui/icons": "^4.0.1",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"dva": "^2.3.0",
"dva-loading": "^3.0.4",
"js-cookie": "^2.2.0",
"moment": "^2.22.2",
"moment-ago": "^1.2.3",
"path-to-regexp": "^3.0.0",
"prop-types": "^15.7.2",
"qs": "^6.5.2",
"rc-queue-anim": "^1.6.5",
"rc-texty": "^0.2.0",
"react": "^16.8.4",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.4",
"react-markdown": "^4.0.8",
"remarkable": "^1.7.1",
"setprototypeof": "^1.1.1",
"url-polyfill": "^1.0.14"
},
"devDependencies": {
"babel-plugin-dva-hmr": "^0.4.1",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-env": "^5.2.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.11.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.5",
"redbox-react": "^1.4.3",
"teapack": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}