feat: added prettier and typecheck scripts

This commit is contained in:
Bart van der Braak 2023-06-14 17:11:49 +02:00
parent 667b4ec2b1
commit b1fb6d42cc

View file

@ -11,7 +11,10 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"format:write": "prettier . --write --cache",
"format:check": "prettier . --check --cache"
},
"dependencies": {
"@types/node": "20.3.1",