forked from hunghg255/next12-antd-recoil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "next12-antd-recoil",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f .env.development next dev",
"build": "next build",
"start": "env-cmd -f .env.production 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",
"predev": "ts-node --project ./tsconfig.node.json ./scripts/genAntdCss.tsx",
"prebuild": "cross-env NODE_ENV=production ts-node --project ./tsconfig.node.json ./scripts/genAntdCss.tsx"
},
"dependencies": {
"ahooks": "^3.5.1",
"antd": "^5.4.0",
"brainless-token-manager": "^1.2.6",
"classnames": "^2.3.1",
"cookies-next": "^2.1.1",
"dayjs": "^1.11.4",
"intercept-stdout": "^0.1.2",
"next": "^12.3.4",
"next-i18next": "^11.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"recoil": "^0.7.4",
"sharp": "^0.30.7",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@ant-design/static-style-extract": "^1.0.1",
"@hunghg255/eslint-config-react": "^0.0.16",
"@next/bundle-analyzer": "^12.2.1",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "18.7.16",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^8.43.0",
"eslint-config-next": "12.3.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.8.8",
"sass": "^1.54.9",
"ts-node": "^10.9.1",
"typescript": "4.8.3"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint"
]
}
}