-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
{
"name": "my-vue-app",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"commit": "cz",
"dev": "vite",
"build": "vite build",
"commitlint": "commitlint --config commitlint.config.cjs -e -V",
"preview": "vite preview",
"release": "release-it",
"prepare": "husky"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"element-plus": "2.9",
"reset.css": "^2.0.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/prompt-cli": "^19.7.0",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@release-it/conventional-changelog": "^10.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"archiver": "^7.0.1",
"auto-changelog": "^2.5.0",
"commitizen": "^4.3.1",
"conventional-changelog-atom": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"release-it": "^18.1.1",
"rollup-plugin-external-globals": "^0.13.0",
"sass-embedded": "^1.83.4",
"vite": "^6.0.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-minipic": "^1.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "npx --no commitlint --edit $1",
"pre-commit": "npx lint-staged"
}
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"release-it": {
"$schema": "https://unpkg.com/release-it@18/schema/release-it.json",
"git": {
"requireBranch": "main",
"commitMessage": "chore: release v${version}",
"commit": true,
"tag": true,
"push": true,
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"engines": {
"node": ">=20.9"
}
}