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
| {
| "name": "test",
| "version": "0.0.0",
| "scripts": {
| "dev": "vite",
| "build:old": "run-p type-check build-only",
| "build": "vite build",
| "preview": "vite preview --port 4173",
| "build-only": "vite build",
| "type-check": "vue-tsc --noEmit"
| },
| "dependencies": {
| "axios": "^1.4.0",
| "countup.js": "^2.7.0",
| "dayjs": "^1.11.9",
| "echarts": "^5.4.2",
| "element-plus": "^2.3.7",
| "mockjs": "^1.1.0",
| "pinia": "^2.1.4",
| "vue": "^3.3.4",
| "vue-echarts": "^6.6.0",
| "vue-router": "^4.2.4"
| },
| "devDependencies": {
| "@types/mockjs": "^1.0.7",
| "@types/node": "^20.4.1",
| "@vitejs/plugin-vue": "^4.2.3",
| "@vue/tsconfig": "^0.4.0",
| "autoprefixer": "^10.4.14",
| "npm-run-all": "^4.1.5",
| "postcss": "^8.4.25",
| "sass": "^1.63.6",
| "tailwindcss": "^3.3.2",
| "typescript": "~5.1.6",
| "unplugin-auto-import": "^0.16.6",
| "unplugin-element-plus": "^0.7.2",
| "unplugin-vue-components": "^0.25.1",
| "vite": "^4.4.2",
| "vue-tsc": "^1.8.4"
| }
| }
|
|