Skip to content

Commit

Permalink
chore: add versen, commit management tool
Browse files Browse the repository at this point in the history
  • Loading branch information
choisohyun committed Mar 18, 2022
1 parent e5c7a8f commit 7411e94
Show file tree
Hide file tree
Showing 2 changed files with 1,246 additions and 21 deletions.
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"license": "MIT",
"scripts": {
"dev": "vite",
"prod": "vite build"
"prod": "vite build",
"release": "standard-version"
},
"bin": {
"react-vite-ts-boilerplate": "./bin/react-vite-ts-boilerplate.js"
Expand All @@ -30,6 +31,8 @@
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-alias": "^3.1.9",
"@types/react": "17.0.35",
"@types/react-dom": "17.0.11",
Expand All @@ -52,15 +55,21 @@
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"sass": "1.43.5",
"standard-version": "^9.3.2",
"typescript": "^4.5.2",
"vite": "^2.8.6",
"vite-plugin-html": "^3.1.0",
"vite-tsconfig-paths": "^3.4.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "standard-version"
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
Expand Down
Loading

0 comments on commit 7411e94

Please sign in to comment.