-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.52 KB
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
{
"author": "Jorge Mendez Ortega <jorge.mendez.ortega@gmail.com>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "Quickstart project with commitizen, husky, lint-staged, prettier, standard-version",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.10.0",
"husky": "9.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"prettier-plugin-sh": "0.14.0",
"standard-version": "9.5.0",
"vite": "^8.2.2"
},
"license": "MIT",
"main": "index.js",
"name": "quickstart",
"scripts": {
"alias": "git config --global alias.cz \"!npm run commit\"",
"build": "vite build",
"commit": "cz",
"dev": "vite",
"frendly": "commitizen init cz-conventional-changelog --save-dev --save-exact --force",
"postInstall": "npm run alias",
"pre-commit": "git fetch; git pull; lint-staged",
"pre:release": "standard-version --dry-run",
"prepare": "husky",
"prepare:husky": "husky init",
"prettier:format": "prettier --config .prettierrc './**' --write",
"prettier:watch": "onchange './**' -- prettier --write {{changed}}",
"preview": "vite preview",
"release": "standard-version",
"release:beta": "standard-version --prerelease beta"
},
"version": "1.1.0-beta.3"
}