-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"private": true,
"scripts": {
"start": "set PORT=8001&&umi dev",
"build": "umi build",
"test": "umi test",
"lint": "eslint {src,mock,tests}/**/*.{js,jsx} --fix",
"precommit": "lint-staged"
},
"dependencies": {
"@ant-design/charts": "^1.3.5",
"@ant-design/flowchart": "^1.0.9",
"@ant-design/icons": "^4.7.0",
"@ant-design/maps": "^0.0.6",
"@ant-design/plots": "^1.0.9",
"antd": "^4.18.6",
"dva": "^2.6.0-beta.6",
"rc-tween-one": "^3.0.6",
"react": "^16.8.6",
"react-csv": "^2.2.2",
"react-dom": "^16.8.6",
"react-highlight-words": "^0.18.0",
"react-to-print": "^2.14.7",
"umi-request": "^1.4.0"
},
"devDependencies": {
"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",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"react-test-renderer": "^16.7.0",
"umi": "^2.7.7",
"umi-plugin-react": "^1.8.4"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}