-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
{
"private": true,
"scripts": {
"dev": "npm run serve & npm run start",
"start": "umi dev",
"serve": "json-server --watch db.json",
"build": "umi build",
"test": "umi test",
"lint:es": "eslint --ext .js src mock tests",
"lint:ts": "tslint \"src/**/*.ts\" \"src/**/*.tsx\""
},
"dependencies": {
"@ant-design/compatible": "^1.0.1",
"antd": "^4.0.1",
"axios": "^0.19.0",
"dva": "^2.6.0-beta.6",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@ant-design/icons": "^4.0.2",
"@types/jest": "^23.3.12",
"@types/mockjs": "^1.0.2",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-test-renderer": "^16.0.3",
"@umijs/preset-react": "^1.3.6",
"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",
"json-server": "^0.15.1",
"lint-staged": "^7.2.2",
"react-test-renderer": "^16.7.0",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"umi": "^3.0.3",
"umi-types": "^0.3.0"
},
"engines": {
"node": ">=8.0.0"
}
}