-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
95 lines (95 loc) · 2.69 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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite --open --host",
"build": "vite build",
"preview": "vite preview --port 5050 --host --config vite.config.preview.ts",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier . --write"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@vueuse/core": "^11.1.0",
"axios": "^1.7.7",
"echarts": "^5.5.1",
"pinia": "^2.2.2",
"portal-vue": "^2.1.7",
"vue": "^2.7.16",
"vue-echarts": "^7.0.3",
"vue-i18n": "^8.28.2",
"vue-i18n-bridge": "^9.14.1",
"vue-router": "^3.6.5",
"vuetify": "^2.7.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@intlify/core-base": "^9.14.1",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@kingyue/vite-plugin-vue2-svg": "^0.6.0",
"@pinia/testing": "^0.1.5",
"@testing-library/vue": "^5.9.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.10",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/test-utils": "^1.3.6",
"browserslist": "^4.24.0",
"browserslist-to-esbuild": "^2.1.1",
"cypress": "^13.15.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-vue": "^9.28.0",
"flush-promises": "^1.0.2",
"jsdom": "^25.0.1",
"msw": "^2.4.9",
"postcss-preset-env": "^10.0.5",
"prettier": "^3.3.3",
"rollup-plugin-regexp": "^5.0.1",
"sass": "~1.32.13",
"start-server-and-test": "^2.0.8",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-pages": "^0.32.3",
"vite-plugin-vue-layouts": "^0.8.0",
"vitest": "^2.1.1",
"vue-template-compiler": "^2.7.16",
"vue-tsc": "^2.1.6",
"vuetify2-component-types": "^2.7.2"
},
"browserslist": [
"> 1.3%",
"last 2 versions",
"not dead",
"not op_mini all",
"not ie>0"
],
"msw": {
"workerDirectory": "public"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite-plugin-vue-layouts>vite": "5"
}
},
"allowedDeprecatedVersions": {
"vue": "2"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}