-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.56 KB
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
{
"private": true,
"packageManager": "pnpm@7.28.0",
"scripts": {
"dev": "vite --open --host",
"build": "vite build",
"preview": "vite preview --port 5050 --host",
"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 --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"type:vuetify": "node ./scripts/vuetify-type.mjs > ./src/vuetify2.d.ts"
},
"dependencies": {
"@mdi/js": "^7.1.96",
"@vueuse/core": "^9.13.0",
"axios": "^1.3.3",
"echarts": "^5.4.1",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.0.32",
"portal-vue": "^2.1.7",
"screenfull": "^6.0.2",
"vue": "^2.7.14",
"vue-echarts": "^6.5.4",
"vue-i18n": "8.27.2",
"vue-i18n-bridge": "^9.2.2",
"vue-router": "^3.6.5",
"vuetify": "^2.6.14"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^0.8.2",
"@kingyue/vite-plugin-vue2-svg": "^0.5.0",
"@pinia/testing": "^0.0.15",
"@rushstack/eslint-patch": "^1.2.0",
"@testing-library/vue": "^5.8.3",
"@types/lodash": "^4.14.191",
"@types/node": "^16.18.13",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-legacy": "^4.0.1",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^1.3.4",
"browserslist-to-esbuild": "^1.2.0",
"cypress": "^10.11.0",
"eslint": "^8.35.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.9.0",
"flush-promises": "^1.0.2",
"jsdom": "^21.1.0",
"msw": "^1.0.1",
"postcss-load-config": "^4.0.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"sass": "~1.32.13",
"start-server-and-test": "^2.0.0",
"terser": "^5.16.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.0",
"unplugin-vue-components": "^0.24.0",
"vite": "^4.1.3",
"vite-plugin-inspect": "^0.7.15",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vitest": "^0.29.2",
"vue-template-compiler": "^2.7.14",
"vue-tsc": "^1.1.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not op_mini all",
"not ie>0",
"chrome>68"
],
"msw": {
"workerDirectory": "public"
}
}