-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "vue-h5-template",
"type": "module",
"version": "0.6.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"check:spell": "cspell src",
"lint:es": "eslint .",
"lint:style": "stylelint 'src/**/*.{vue,css,scss}'",
"lint:fix": "pnpm lint:es --fix && pnpm lint:style --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{js,json,vue}": "eslint --fix",
"src/**/*.{vue,css,scss}": "stylelint --fix"
},
"dependencies": {
"axios": "^1.7.9",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"vant": "^4.9.15",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@iconify/json": "^2.2.290",
"@iconify/tailwind": "^1.2.0",
"@leedomjs/eslint-config": "^0.12.3",
"@leedomjs/stylelint-config": "^0.4.0",
"@leedomjs/tailwindcss-color-preset": "^0.8.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"cspell": "^8.17.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"tailwindcss": "^3.4.17",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.6",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.6.8",
"vitest": "^2.1.8"
}
}