refactor: Update package.json with new format scripts and add typecheck command

This commit is contained in:
Bram Suurd
2024-08-09 00:02:21 +02:00
parent 33497df2dc
commit c2e07c6a32

View File

@@ -13,7 +13,9 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
@@ -61,4 +63,4 @@
"tailwindcss-animated": "^1.0.1",
"typescript": "^5"
}
}
}