-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.82 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
{
"name": "vue-template",
"version": "0.0.6",
"private": false,
"description": "A Vue 3 project template",
"author": "yhx <2045399856@qq.com>",
"license": "MIT",
"keywords": [
"vue",
"vue-template",
"vue-cli",
"vite",
"pinia",
"vue-router"
],
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"stylelint": "npx stylelint '**/*.css' --allow-empty-input",
"format": "prettier --write src/",
"commit": "git cz",
"release": "standard-version",
"release:major": "standard-version -- --release-as major",
"release:minor": "standard-version -- --release-as minor",
"release:patch": "standard-version -- --release-as patch",
"prepare": "husky install"
},
"dependencies": {
"@iconify/tailwind": "^1.1.1",
"@vueuse/core": "^12.0.0",
"axios": "^1.7.7",
"conventional-changelog-cli": "^5.0.0",
"element-plus": "^2.7.7",
"git-cz": "^4.9.0",
"pinia": "^2.1.7",
"sass": "^1.77.8",
"vite-plugin-inspect": "^0.8.5",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rushstack/eslint-patch": "^1.8.0",
"@vheemstra/vite-plugin-imagemin": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@yhx392/vite-plugin-auto-version": "^0.0.2",
"@yhx392/vite-plugin-zip-dist": "^0.0.10",
"autoprefixer": "^10.4.19",
"code-inspector-plugin": "^0.14.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.9.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-vue": "^9.23.0",
"husky": "^8.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"imagemin-webp": "^8.0.0",
"lint-staged": "^15.2.10",
"mockjs": "^1.1.0",
"postcss": "^8.4.39",
"postcss-html": "^1.7.0",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"standard-version": "^9.5.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.6",
"terser": "^5.37.0",
"unplugin-auto-import": "^0.18.0",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.4.8",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-vue-devtools": "^7.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,ts,vue}": "npx eslint",
"src/**/*.{css,scss,html,vue}": "npx stylelint --allow-empty-input"
}
}