-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.62 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
{
"name": "vue3-varlet-mobile",
"type": "module",
"version": "2.0.1",
"packageManager": "[email protected]",
"description": "Vue + Vite H5 Starter Template",
"license": "MIT",
"scripts": {
"dev": "cross-env MOCK_SERVER_PORT=8086 vite",
"build": "vue-tsc --noEmit && vite build",
"build:dev": "vue-tsc --noEmit && vite build --mode=development",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"release": "bumpp --commit --push --tag",
"prepare": "husky"
},
"dependencies": {
"@unhead/vue": "^1.9.11",
"@varlet/touch-emulator": "^3.2.13",
"@varlet/ui": "^3.2.13",
"@vueuse/core": "^10.10.0",
"axios": "^1.7.2",
"echarts": "^5.5.0",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"resize-detector": "^0.3.0",
"store": "^2.0.12",
"vconsole": "^3.15.1",
"vue": "^3.4.27",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "2.19.1",
"@iconify-json/carbon": "^1.1.34",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.13.0",
"@types/nprogress": "^0.2.3",
"@types/store": "^2.0.5",
"@unocss/eslint-plugin": "0.60.3",
"@unocss/preset-rem-to-px": "0.60.3",
"@varlet/import-resolver": "^3.2.13",
"@varlet/preset-unocss": "^3.2.13",
"@varlet/unplugin-icon-builder": "^0.2.27",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19",
"bumpp": "^9.4.1",
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"eslint": "npm:[email protected]",
"eslint-plugin-format": "^0.1.1",
"eslint-ts-patch": "9.2.0-6",
"husky": "^9.0.11",
"less": "^4.2.0",
"mockjs": "^1.1.0",
"postcss-mobile-forever": "^4.1.4",
"rollup": "^4.18.0",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"unocss": "0.60.3",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"unplugin-vue-router": "^0.9.0",
"vite": "^5.2.12",
"vite-plugin-mock-dev-server": "^1.5.0",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-sitemap": "^0.6.2",
"vite-plugin-vconsole": "^2.1.1",
"vite-plugin-vue-devtools": "^7.2.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.19"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss",
"esbuild"
],
"allowedVersions": {
"rollup": "^4.x",
"unocss": "^0.x"
},
"allowAny": [
"eslint"
]
}
}
}