-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vue3-vant-mobile",
"type": "module",
"version": "3.7.1",
"packageManager": "pnpm@10.5.2",
"description": "An mobile web apps template based on the Vue 3 ecosystem",
"license": "MIT",
"scripts": {
"dev": "cross-env MOCK_SERVER_PORT=8086 vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp --commit --push --tag",
"typecheck": "vue-tsc --noEmit",
"commitlint": "commitlint --edit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@unhead/vue": "~1.11.20",
"@vant/touch-emulator": "^1.4.0",
"@vant/use": "^1.6.0",
"@vueuse/core": "^12.7.0",
"axios": "^1.8.1",
"crypto-js": "^4.2.0",
"echarts": "^5.6.0",
"js-base64": "^3.7.7",
"lodash-es": "^4.17.21",
"md5": "^2.3.0",
"nprogress": "^0.2.0",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"resize-detector": "^0.3.0",
"vant": "^4.9.17",
"vconsole": "^3.15.1",
"vue": "^3.5.13",
"vue-i18n": "^11.1.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "4.3.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@iconify-json/carbon": "^1.2.8",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.8",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-plugin": "66.1.0-beta.3",
"@unocss/preset-rem-to-px": "66.1.0-beta.3",
"@vant/auto-import-resolver": "^1.3.0",
"@vitejs/plugin-legacy": "^6.0.2",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"bumpp": "^10.0.3",
"consola": "^3.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-plugin-format": "^1.0.1",
"less": "^4.2.2",
"lint-staged": "^15.4.3",
"mockjs": "^1.1.0",
"postcss-mobile-forever": "^4.4.0",
"rollup": "^4.34.9",
"simple-git-hooks": "^2.11.1",
"terser": "^5.39.0",
"typescript": "^5.8.2",
"unocss": "66.1.0-beta.3",
"unplugin-auto-import": "^19.1.1",
"unplugin-vue-components": "^28.4.1",
"unplugin-vue-router": "^0.11.2",
"vite": "^6.2.0",
"vite-plugin-mock-dev-server": "^1.8.4",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-sitemap": "^0.7.1",
"vite-plugin-vconsole": "^2.1.1",
"vite-plugin-vue-devtools": "^7.7.2",
"vitest": "^3.0.7",
"vue-tsc": "^2.2.6"
},
"pnpm": {
"allowedDeprecatedVersions": {
"glob": "7.2.3",
"inflight": "1.0.6",
"sourcemap-codec": "1.4.8"
},
"peerDependencyRules": {
"allowedVersions": {
"typescript": "5.8.2"
}
},
"onlyBuiltDependencies": [
"core-js",
"esbuild",
"simple-git-hooks"
]
},
"resolutions": {
"vite": "^6.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint $1"
},
"lint-staged": {
"*": "eslint --fix"
}
}