forked from coderbk197/vite-react-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
{
"name": "vite-antd-jotai",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run lint && tsc && vite build",
"build:dev": "cp -f .env.mabyDevelopment .env && npm run build",
"build:prod": "cp -f .env.mabyProduction .env && npm run build",
"preview": "vite preview",
"start": "npm run build && vite preview",
"lint": "eslint --ext .ts,.tsx src --color",
"format": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"generate:icon-type": "node ./scripts/generateTypeIcon.js",
"analyze": "npm run lint && tsc && vite build --mode=analyze && source-map-explorer 'dist/assets/*.js'",
"verify-commit": "verify-commit-msg",
"postinstall": "git-scm-hooks",
"release": "bumpp -r"
},
"dependencies": {
"ahooks": "^3.7.8",
"antd": "^5.9.0",
"brainless-token-manager": "^1.3.3",
"classnames": "^2.3.2",
"dayjs": "^1.11.9",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"jotai": "^1.13.1",
"jotai-devtools": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^12.3.1",
"react-icomoon": "^2.5.7",
"react-router-dom": "^6.16.0",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@hunghg255/eslint-config-react": "^0.0.16",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.6",
"@vitejs/plugin-react": "^4.0.4",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"eslint-config-react-app": "^7.0.1",
"git-scm-hooks": "^0.0.6",
"prettier": "^2.8.8",
"sass": "^1.67.0",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.5",
"verify-commit-msg": "^0.0.11",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-environment": "^1.1.3"
},
"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"
}
}