-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
79 lines (79 loc) · 2.23 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
77
78
79
{
"name": "vite-react-ts-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"start:mock": "vite --mode mock",
"start:production": "vite --mode production",
"build": "vite build",
"preview": "vite preview",
"lint:script": "eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"lint:style": "stylelint --fix **/*.{css,less,scss}"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add ."
],
"*.{json.md,xml,svg,html,js,jsx}": "prettier --write",
"*.less": [
"stylelint --fix --custom-syntax postcss-less",
"git add ."
]
},
"dependencies": {
"antd": "^5.15.0",
"@ant-design/icons": "^5.0.1",
"@ant-design/pro-components": "^2.6.48",
"@types/qs": "^6.9.7",
"@websee/core": "^4.0.2",
"@websee/performance": "^4.0.2",
"@websee/recordscreen": "^4.0.2",
"ahooks": "^3.7.5",
"axios": "^1.3.4",
"dayjs": "^1.11.10",
"less": "^4.1.3",
"lodash": "^4.17.21",
"mobx": "^6.8.0",
"mobx-react": "^7.6.0",
"postcss": "^8.4.21",
"postcss-less": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/lodash": "^4.14.195",
"@types/node": "^18.14.5",
"@vitejs/plugin-react": "^3.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mockjs": "^1.1.0",
"prettier": "^2.8.4",
"qs": "^6.11.0",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^2.9.6",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2",
"vite": "^5.1.4"
}
}