-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.98 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "parsec-app",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "{{description}}",
"author": "{{author}}",
"repository": {
"type": "git",
"url": "{{git}}"
},
"engines": {
"node": ">=20.17.0"
},
"scripts": {
"dev": "max dev",
"dev:staging": "UMI_ENV=staging max dev",
"build": "max build",
"build:production": "UMI_ENV=production max build",
"build:staging": "UMI_ENV=staging max build",
"postinstall": "max setup",
"openapi": "openapi2ts & pnpm run lint",
"setup": "max setup",
"start": "yarn dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%"
],
"dependencies": {
"@ant-design/icons": "^6.3.1",
"@ant-design/pro-components": "^3.1.14-1",
"@ant-design/pro-layout": "^7.22.7",
"@pansy/china-division": "^2.1.0",
"@umijs/max": "^4.6.71",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-react": "^1.0.6",
"ahooks": "^3.9.7",
"antd": "^6.5.0",
"antd-style": "^4.1.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.21",
"file-saver": "^2.0.5",
"js-export-excel": "^1.1.4",
"nprogress": "^0.2.0",
"qs": "^6.15.3",
"react-easy-crop": "^6.1.0",
"vstores": "^0.0.17"
},
"devDependencies": {
"@antfu/eslint-config": "^9.1.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/file-saver": "^2.0.7",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.15.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@umijs/openapi": "^1.14.1",
"eslint": "^10.6.0",
"eslint-plugin-format": "^2.0.1",
"less-loader": "^13.0.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3"
},
"resolutions": {
"eslint-plugin-unicorn": "67.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx eslint . --fix",
"commit-msg": "npx --no-install commitlint --edit $1"
}
}