-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.13 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
76
{
"name": "react-starter",
"type": "module",
"version": "1.0.0",
"private": true,
"homepage": "https://liuw5367.github.io/react-starter",
"scripts": {
"start": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"test": "vitest",
"type-check": "tsc",
"lint": "eslint . --fix",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@ant-design/cssinjs": "^1.18.2",
"abortcontroller-polyfill": "^1.7.5",
"ahooks": "^3.7.8",
"antd": "^5.12.6",
"axios": "^1.6.3",
"classnames": "^2.5.1",
"core-js": "^3.35.0",
"immer": "^9.0.21",
"lodash": "^4.17.21",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.21.1",
"uuid": "^9.0.1",
"whatwg-fetch": "^3.6.20",
"zustand": "^4.4.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@iconify-json/carbon": "^1.1.27",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.4",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-helmet": "^6.1.11",
"@types/uuid": "^9.0.7",
"@unocss/eslint-config": "^0.58.2",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint-plugin-format": "^0.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"terser": "^5.26.0",
"typescript": "^5.3.3",
"unocss": "^0.58.2",
"unplugin-auto-import": "^0.17.3",
"unplugin-icons": "^0.18.1",
"unplugin-svg-component": "^0.8.0",
"vite": "^5.0.10",
"vite-plugin-mock": "^3.0.1",
"vite-plugin-pages": "^0.32.0",
"vitest": "^1.1.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no-install commitlint --edit \"${1}\""
},
"lint-staged": {
"*": "eslint --fix"
}
}