-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "umi-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "umi dev",
"build": "umi build && node ./scripts/version.js",
"test": "umi test",
"lint": "eslint --ext .js src mock tests",
"precommit": "lint-staged"
},
"dependencies": {
"animate.css": "^3.7.2",
"classname": "^0.0.0",
"css-vars-ponyfill": "^2.3.1",
"decimal.js": "^10.2.0",
"dva-model-extend": "^0.1.2",
"event-emitter": "^0.3.5",
"form-data": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"moment": "^2.27.0",
"react": "^16.8.6",
"react-animated-number": "^0.4.4",
"react-dom": "^16.8.6",
"react-headroom": "^3.0.0",
"react-helmet": "^5.2.1",
"react-pdf": "^4.1.0",
"react-slidepage": "^0.1.5",
"react-waypoint": "^9.0.2",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@umijs/preset-react": "^1.8.4",
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.20.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"react-test-renderer": "^16.7.0",
"umi": "^3.4.8",
"umi-plugin-antd-theme": "^2.1.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}