forked from antfu-collective/vitesse-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I"
},
"peerDependencies": {
"@vue-macros/reactivity-transform": "^0.3.9",
"prettier": ">=3.0.0"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@fontsource-variable/roboto-mono": "^5.0.9",
"@fontsource/poppins": "^5.0.8",
"@iconify-json/carbon": "^1.1.17",
"@iconify-json/ph": "^1.1.6",
"@sm-iclient/iserver": "0.6.6-alpha",
"@types/node": "^20.2.5",
"@unocss/eslint-config": "^0.53.0",
"@unocss/reset": "^0.53.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue-macros/reactivity-transform": "^0.3.9",
"@vue-macros/volar": "^0.10.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.3.2",
"echarts": "^5.4.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"ky": "^1.0.0",
"lint-staged": "^13.2.2",
"maplibre-gl": "^3.3.1",
"naive-ui": "^2.34.4",
"nprogress": "^0.2.0",
"pinia": "^2.1.6",
"pnpm": "^8.6.0",
"prettier": ">=3.0.0",
"radash": "^11.0.0",
"taze": "^0.10.2",
"typescript": "^5.1.3",
"unocss": "^0.53.0",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.0",
"unplugin-vue-macros": "^2.2.1",
"unplugin-vue-router": "^0.6.4",
"vite": "^4.3.9",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-vue-meta-layouts": "^0.3.0",
"vitest": "^0.31.4",
"vue-echarts": "^6.6.1",
"vue-tsc": "^1.6.5"
},
"lint-staged": {
"*": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}