-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite --open --host",
"build": "vite build",
"preview": "vite preview --config vite.config.preview.ts",
"test:unit": "vitest",
"test:e2e": "playwright test",
"typecheck": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier . --write"
},
"dependencies": {
"@vueuse/core": "^12.4.0",
"echarts": "^5.6.0",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-echarts": "^7.0.3",
"vue-router": "^4.5.0",
"vuetify": "^3.7.6"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@nuxt/eslint-config": "^0.7.5",
"@pinia/testing": "^0.1.7",
"@playwright/test": "^1.49.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.18.0",
"eslint-plugin-playwright": "^2.1.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"rollup-plugin-regexp": "^5.0.1",
"typescript": "^5.7.3",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.7",
"vite-plugin-vue-meta-layouts": "^0.5.1",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}