-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"private": true,
"scripts": {
"start": "umi dev",
"start:no-mock": "cross-env MOCK=none umi dev",
"analyze": "cross-env ANALYZE=1 UMI_ENV=prod umi build",
"build": "cross-env UMI_ENV=prod umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"dependencies": {
"@ant-design/icons": "4.1.0",
"antd": "4.3.5",
"classnames": "^2.2.6",
"dayjs": "^1.8.30",
"localforage": "^1.8.1",
"lodash": "^4.17.19",
"nprogress": "0.2.0",
"path-to-regexp": "2.4.0",
"prop-types": "15.7.2",
"qs": "6.9.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-router": "5.2.0",
"react-use": "15.2.5",
"umi": "3.1.4"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@types/mockjs": "1.0.2",
"@types/nprogress": "0.2.0",
"@umijs/plugin-antd": "0.7.0",
"@umijs/plugin-initial-state": "2.2.1",
"@umijs/plugin-locale": "0.9.0",
"@umijs/plugin-model": "2.5.1",
"@umijs/plugin-request": "2.4.1",
"@umijs/test": "3.1.4",
"cross-env": "^5.2.0",
"lint-staged": "10.0.10",
"mockjs": "1.1.0",
"prettier": "1.19.1",
"redbox-react": "1.6.0",
"yorkie": "2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=10.13.0"
}
}