-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.17 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
74
75
{
"name": "next-13-antd-jotai",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "env-cmd -f .env.clientDev next dev",
"build": "next build",
"buildDev": "cp -f .env.clientDev .env && next build",
"buildProd": "cp -f .env.clientProd .env && next build",
"start": "env-cmd -f .env.clientProd next start",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"release": "bumpp -r",
"gen-icon": "csvgtocss",
"gen-color": "esno ./scripts/genColorCss.ts",
"standalone": "node server.js",
"css": "ts-node --project ./tsconfig.node.json ./scripts/genAntdCss.tsx"
},
"dependencies": {
"ahooks": "^3.8.4",
"antd": "^5.22.3",
"autoprefixer": "^10.4.20",
"brainless-token-manager": "^1.3.3",
"classnames": "^2.5.1",
"cookies-next": "^4.3.0",
"dayjs": "^1.11.13",
"jotai": "^2.10.3",
"next": "^15.0.4",
"next-i18next": "^11.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"umi-request": "^1.4.0",
"unloger": "^0.0.3"
},
"devDependencies": {
"@ant-design/cssinjs": "^1.22.1",
"@ant-design/static-style-extract": "^1.0.3",
"@hunghg255/eslint-config-react": "^0.0.26",
"@next/bundle-analyzer": "^12.3.4",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "18.7.16",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"bumpp": "^9.8.1",
"cross-env": "^7.0.3",
"csvgtocss": "^0.1.1",
"env-cmd": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-next": "^13.5.7",
"esno": "^4.8.0",
"git-scm-hooks": "^0.0.11",
"prettier": "^2.8.8",
"sass": "^1.82.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "4.8.3",
"verify-commit-msg": "^0.0.14"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}