-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "vite-antd-pc",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cross-env REACT_APP_ENV=dev vite",
"build": "vite build",
"serve": "node serve/app.js",
"preview": "vite preview",
"prepare": "husky install",
"lint": "lint-staged"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@dnd-kit/sortable": "^7.0.2",
"@emotion/css": "^11.10.6",
"antd": "^5.3.2",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-router-dom": "^6.4.3",
"zustand": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.11.60",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-react": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.57.1",
"terser": "^5.15.1",
"typescript": "^4.9.3",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^4.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --write"
]
}
}