feat(package): add biome check script and biome devDependency

This commit adds a new "check" script in the package.json that uses Biome for checking our codebase. It also includes Biome as a new development dependency to facilitate the use of the check script.
This commit is contained in:
Mathis H (Avnyr) 2024-06-12 09:48:28 +02:00
parent a7899d8a4a
commit cfa18733b4
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"check": "biome check --skip-errors --apply src"
},
"dependencies": {
"@fontsource-variable/kode-mono": "^5.0.3",
@ -62,6 +63,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",