-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"test": "umi test",
"lint": "eslint --ext .js .tsx src mock tests"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.19.1",
"eslint-config-umi": "^0.1.5",
"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",
"umi": "^2.1.6",
"umi-plugin-react": "^1.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@material-ui/core": "^3.9.0",
"@material-ui/icons": "^3.0.1",
"@material-ui/styles": "^3.0.0-alpha.8",
"axios": "^0.18.0",
"dva-core": "1.1.0",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-typescript": "^0.14.0",
"jss": "10.0.0-alpha.3",
"mockjs": "^1.0.1-beta3",
"nprogress": "^0.2.0",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-router": "4.4.0-beta.1",
"redbox-react": "1.x",
"redux": "3.x",
"typescript": "*",
"typescript-eslint-parser": "^21.0.1",
"webpack-bundle-analyzer": "^3.0.3"
}
}