-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"private": true,
"author": "星宿君 <[email protected]>",
"scripts": {
"build": "max build",
"deploy": "npm run build && npm run deploy:dist",
"deploy:dist": "gh-pages -d dist",
"dev": "npm run start:dev",
"format": "prettier --cache --write .",
"format:lint": "lint-staged --quiet",
"generate": "max g",
"postinstall": "max setup",
"prepare": "husky install",
"setup": "max setup",
"start": "npm run start:mock-cloud",
"start:dev": "POLONA_ENV=dev max dev",
"start:mock-cloud": "POLONA_ENV=mock-cloud max dev",
"start:mock-local": "POLONA_ENV=mock-local max dev",
"start:prod": "POLONA_ENV=prod max dev",
"start:test": "POLONA_ENV=test max dev"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-components": "^2.0.1",
"@umijs/max": "^4.0.44",
"ahooks": "^3.7.4",
"antd": "^5.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^2",
"prettier-plugin-packagejson": "^2",
"typescript": "^4.1.2"
}
}