-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.11 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
{
"type": "module",
"private": true,
"scripts": {
"build": "bunx vite build && cp dist/index.html dist/404.html",
"dev": "bunx vite",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint --fix .",
"postinstall": "npx simple-git-hooks",
"preview": "bunx vite preview",
"test": "vitest -u",
"typecheck": "vue-tsc --noEmit",
"up": "taze major -I"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"@hyoban/vite-plugin-checker": "^0.1.1",
"@iconify/json": "^2.2.166",
"@types/lodash-es": "^4.17.12",
"@types/sortablejs": "^1.15.7",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vueuse/core": "^10.7.1",
"@vueuse/integrations": "^10.7.1",
"@vueuse/router": "^10.7.1",
"axios": "^1.6.5",
"colord": "^2.9.3",
"dayjs": "^1.11.10",
"drauu": "^0.3.7",
"echarts": "^5.4.3",
"ge-eslint": "^0.0.16",
"lightningcss": "^1.22.1",
"lodash-es": "^4.17.21",
"naive-ui": "^2.37.3",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"sortablejs": "^1.15.1",
"terser": "^5.26.0",
"unocss-preset-extra": "^0.5.3",
"unplugin-vue-router": "^0.7.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-turbo-console": "^0.3.2",
"vite-plugin-vue-devtools": "0.5.1",
"vite-plugin-vue-inspector": "^4.0.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue": "^3.4.7",
"vue-router": "^4.2.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.10.8",
"@unocss/reset": "^0.58.3",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/test-utils": "^2.4.3",
"eslint": "^8.56.0",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"pnpm": "^8.14.0",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vitest": "^1.1.3",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged && bun typecheck"
},
"lint-staged": {
"*": "eslint --fix"
}
}