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
| {
| "name": "test",
| "version": "0.0.0",
| "scripts": {
| "dev": "vite",
| "build": "run-p type-check build-only",
| "preview": "vite preview --port 4173",
| "build-only": "vite build",
| "type-check": "vue-tsc --noEmit"
| },
| "dependencies": {
| "axios": "^1.4.0",
| "countup.js": "^2.6.2",
| "dayjs": "^1.11.7",
| "echarts": "^5.4.2",
| "element-plus": "^2.3.4",
| "mockjs": "^1.1.0",
| "pinia": "^2.0.35",
| "vue": "^3.2.47",
| "vue-echarts": "^6.5.5",
| "vue-router": "^4.1.6"
| },
| "devDependencies": {
| "@types/mockjs": "^1.0.7",
| "@types/node": "^20.1.0",
| "@vitejs/plugin-vue": "^4.2.1",
| "@vue/tsconfig": "^0.3.2",
| "autoprefixer": "^10.4.14",
| "npm-run-all": "^4.1.5",
| "postcss": "^8.4.23",
| "sass": "^1.62.1",
| "tailwindcss": "^3.3.2",
| "typescript": "~5.0.4",
| "unplugin-auto-import": "^0.15.3",
| "unplugin-element-plus": "^0.7.1",
| "unplugin-vue-components": "^0.24.1",
| "vite": "^4.3.5",
| "vue-tsc": "^1.6.4"
| }
| }
|
|