-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "parsec-app",
"version": "1.0.0",
"private": true,
"description": "{{description}}",
"repository": {
"type": "git",
"url": "{{git}}"
},
"author": "{{author}}",
"scripts": {
"build": "max build",
"build:production": "UMI_ENV=production max build",
"build:staging": "UMI_ENV=staging max build",
"dev": "max dev",
"dev:staging": "UMI_ENV=staging max dev",
"format": "prettier --cache --write .",
"postinstall": "max setup",
"openapi": "ts-node openapi.config.ts",
"prepare": "husky",
"setup": "max setup",
"start": "yarn dev"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"prettier --write"
]
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 11"
],
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ant-design/pro-components": "^2.8.1",
"@pansy/china-division": "^2.1.0",
"@umijs/max": "^4.3.31",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-react": "^1.0.6",
"ahooks": "^3.8.1",
"antd": "^5.21.6",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"file-saver": "^2.0.5",
"js-export-excel": "^1.1.4",
"less-loader": "^12.2.0",
"nprogress": "^0.2.0",
"qs": "^6.13.0",
"react-easy-crop": "^5.1.0",
"vstores": "^0.0.17"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.9.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@umijs/lint": "^4.3.31",
"@umijs/openapi": "^1.13.0",
"eslint": "^8.35.0",
"husky": "^9",
"lint-staged": "^13",
"prettier": "^2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"rc-util": "^5.43.0",
"stylelint": "^14.16.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}