feat: added and intialized husky

This commit is contained in:
Bart van der Braak 2023-06-14 01:58:38 +02:00
parent e541250cc0
commit 642e42ea93
3 changed files with 15 additions and 2 deletions

View file

@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@types/node": "20.3.1",
@ -23,6 +24,7 @@
"typescript": "5.1.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.5"
"@commitlint/config-conventional": "^17.6.5",
"husky": "^8.0.0"
}
}