-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
49
50
51
52
53
54
55
56
{
"private": true,
"scripts": {
"build": "cross-env REACT_APP_ENV=dev umi build",
"build:pro": "cross-env REACT_APP_ENV=pro umi build",
"build:test": "cross-env REACT_APP_ENV=test umi build",
"dev": "umi dev",
"postinstall": "umi setup",
"lint-staged": "lint-staged",
"setup": "umi setup",
"start": "cross-env REACT_APP_ENV=dev npm run dev",
"start:pro": "cross-env REACT_APP_ENV=pro npm run dev",
"start:test": "cross-env REACT_APP_ENV=test npm run dev"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,less}": [
"umi lint"
]
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@umijs/plugins": "^4.3.27",
"ahooks": "^3.8.1",
"antd": "^5.21.5",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-dev-inspector": "^2.0.1",
"react-dom": "^18.3.1",
"umi": "^4.3.27",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^9.0.8",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"stylelint": "^15.11.0",
"typescript": "^5.6.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}