-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "vue3-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint",
"lint:fix": "eslint --fix --quiet",
"prepare": "husky"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@sentry/browser": "^8.47.0",
"@sentry/tracing": "^7.114.0",
"@sentry/vue": "^8.47.0",
"axios": "^1.7.7",
"element-plus": "^2.9.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"particles.vue3": "^2.12.0",
"pinia": "^2.2.5",
"pinia-plugin-persistedstate": "^4.1.2",
"unplugin-element-plus": "^0.8.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"mitt": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@sentry/cli": "^2.40.0",
"@sentry/types": "^8.48.0",
"@sentry/vite-plugin": "^2.23.0",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup-plugin-external-globals": "^0.13.0",
"rollup-plugin-visualizer": "^5.14.0",
"sass": "^1.83.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.19.1",
"unocss": "^65.4.0",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"src/**/*.{js,cjs,ts,vue}": [
"npm run lint:fix"
],
"src/**/*.{html,json,css,scss}": [
"npx prettier --write"
]
}
}