forked from AnthonyJu/vitesse-plain-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,vue}\"",
"lint:style": "stylelint --fix \"src/**/*.{vue,scss}\"",
"typecheck": "vue-tsc --noEmit",
"build": "vite build",
"build-zip": "vite build && pick-zip",
"netlify": "export NODE_OPTIONS=--max_old_space_size=4096 && vite build",
"preview": "vite preview",
"preview-https": "serve dist",
"up": "taze major -I",
"sizecheck": "npx vite-bundle-visualizer",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@arcgis/core": "^4.31.6",
"@vueuse/core": "^12.4.0",
"@vueuse/integrations": "^12.4.0",
"axios": "^1.7.9",
"cropperjs": "^1.6.2",
"echarts": "^5.6.0",
"echarts-liquidfill": "^3.1.0",
"echarts-wordcloud": "^2.1.0",
"element-plus": "^2.9.3",
"file-saver": "^2.0.5",
"howler": "^2.2.4",
"konva": "^9.3.18",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"print-js": "^1.6.0",
"qrcode": "^1.5.4",
"shiki": "^1.27.2",
"vue": "^3.5.13",
"vue-countup-v3": "^1.4.2",
"vue-draggable-plus": "^0.6.0",
"vue-draggable-resizable": "^3.0.0",
"vue-echarts": "^7.0.3",
"vue-i18n": "^11.0.1",
"vue-request": "^2.0.4",
"vue-router": "^4.5.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@anthony-ju/eslint-config": "^0.2.9",
"@anthony-ju/stylelint-config": "^0.4.0",
"@iconify/vue": "^4.3.0",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/file-saver": "^2.0.7",
"@types/howler": "^2.2.12",
"@types/node": "^22.10.7",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-config": "^65.4.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/language-server": "^2.2.0",
"beasties": "^0.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"https-localhost": "^4.7.1",
"javascript-obfuscator": "^4.1.1",
"lint-staged": "^15.4.1",
"pick-zip": "^0.1.0",
"picocolors": "^1.1.1",
"pnpm": "^9.15.4",
"rollup-plugin-obfuscator": "^1.1.0",
"sass": "^1.83.4",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.13.2",
"taze": "^18.2.0",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"unplugin-auto-import": "^19.0.0",
"unplugin-element-plus": "^0.9.0",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.7",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-vue-devtools": "^7.7.0",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*.{vue,scss}": "stylelint --fix",
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
}
}