-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "test",
"private": true,
"version": "0.4.4",
"type": "module",
"scripts": {
"prepare": "rm -rf .husky && husky install && husky add .husky/pre-commit \"npx lint-staged\" && husky add .husky/pre-push \"npm run ci:deploy\"",
"dev": "vite",
"build": "tsc && vite build",
"ci:init": "mb-ci init",
"ci:deploy": "mb-ci deploy"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@ant-design/icons": "^5.1.0",
"antd": "^5.5.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"less": "^4.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.11.2",
"react-router-dom": "^6.11.2",
"socket.io-client": "^4.6.1"
},
"devDependencies": {
"@types/node": "^20.2.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react-swc": "^3.3.1",
"eslint": "^8.40.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mb-ci": "^0.1.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.8"
},
"lint-staged": {
"**/*.{ts,tsx,json}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}