-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.67 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vue3-vant-mobile",
"type": "module",
"version": "2.3.5",
"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 src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"release": "bumpp --commit --push --tag",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --cache --fix",
"git add"
]
},
"dependencies": {
"@tanstack/vue-query": "^5.51.21",
"@unhead/vue": "^1.9.16",
"@vant/touch-emulator": "^1.4.0",
"@vant/use": "^1.6.0",
"@vueuse/core": "^10.11.0",
"axios": "^1.7.3",
"echarts": "^5.5.1",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.1",
"pinia-plugin-persistedstate": "^3.2.1",
"resize-detector": "^0.3.0",
"storejs": "^2.1.0",
"tailwindcss": "^3.4.8",
"vant": "^4.9.4",
"vconsole": "^3.15.1",
"vue": "^3.4.36",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@iconify-json/carbon": "^1.1.37",
"@iconify/vue": "^4.1.2",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.14",
"@types/nprogress": "^0.2.3",
"@types/store": "^2.0.5",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.20",
"bumpp": "^9.4.2",
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^9.27.0",
"eslint-ts-patch": "9.4.0-0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"msw": "^2.4.9",
"postcss": "^8.4.41",
"postcss-import": "^15.1.0",
"postcss-mobile-forever": "^4.1.5",
"postcss-nesting": "^11.3.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"rollup": "^4.20.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.8",
"stylelint": "^16.8.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"terser": "^5.31.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"unplugin-auto-import": "^0.17.8",
"unplugin-vue-components": "^0.27.3",
"unplugin-vue-router": "^0.10.2",
"vite": "^5.4.0",
"vite-plugin-mock-dev-server": "^1.6.1",
"vite-plugin-pwa": "^0.20.1",
"vite-plugin-sitemap": "^0.6.2",
"vite-plugin-vconsole": "^2.1.1",
"vite-plugin-vue-devtools": "^7.3.7",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.29"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss",
"esbuild"
],
"allowedVersions": {
"rollup": "^4.x"
},
"allowAny": [
"eslint"
]
}
},
"msw": {
"workerDirectory": [
"public"
]
}
}