-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.58 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.58 KB
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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vite-react-ts-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"start:mock": "vite --mode mock",
"start:test": "vite --mode test",
"start:production": "vite --mode production",
"build:dev": "vite build --mode dev",
"build:test": "vite build --mode test",
"build": "vite build",
"preview": "vite preview",
"lint:script": "eslint --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": {
"@ant-design/icons": "^6.0.0",
"@ant-design/pro-components": "^2.8.10",
"@iconify/react": "^6.0.1",
"@types/qs": "^6.14.0",
"@websee/core": "^4.0.2",
"@websee/performance": "^4.0.2",
"@websee/recordscreen": "^4.0.2",
"ahooks": "^3.9.0",
"antd": "^5.27.0",
"axios": "^1.11.0",
"dayjs": "^1.11.13",
"less": "^4.4.0",
"lodash": "^4.17.21",
"mobx": "^6.13.7",
"mobx-react": "^9.2.0",
"postcss": "^8.5.6",
"postcss-less": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.8.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.33.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.2.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@unocss/preset-attributify": "^66.5.0",
"@unocss/preset-icons": "^66.5.0",
"@unocss/preset-uno": "^66.5.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"mockjs": "^1.1.0",
"prettier": "^3.6.2",
"qs": "^6.14.0",
"stylelint": "^16.23.1",
"stylelint-config-standard": "^39.0.0",
"typescript": "^5.9.2",
"unocss": "^66.5.0",
"vite": "^7.1.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^3.0.2"
}
}