-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
{
"name": "vite5-vue3-h5-template",
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">= 18.19.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs --fix src",
"lint:style": "stylelint **/*.{vue,css,less} --fix",
"format": "prettier --write **/*.{js,cjs,vue}",
"commit": "git-cz",
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"axios": "^1.7.2",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.11",
"gm-crypto": "^0.1.12",
"js-base64": "^3.7.7",
"js-cookie": "^3.0.5",
"js-md5": "^0.8.3",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.12.1",
"vant": "^4.9.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@rushstack/eslint-patch": "^1.10.3",
"@vant/auto-import-resolver": "^1.2.0",
"@vitejs/plugin-legacy": "^5.4.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-prettier": "^8.0.0",
"autoprefixer": "^10.4.19",
"cnjm-postcss-px-to-viewport": "^1.0.1",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.26.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.2.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"standard-version": "^9.5.0",
"stylelint": "^16.5.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-less": "^3.0.1",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.2.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-remove-console": "^2.2.0",
"vite-plugin-vue-setup-extend": "^0.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"pnpm run lint",
"pnpm run format"
],
"*.{vue,less,css}": [
"pnpm run lint:style"
]
}
}