feat(build): add fmt/lint/test tasks

This commit is contained in:
2025-10-17 23:22:58 +03:00
parent 60a0120b58
commit 8e9c9585f2
13 changed files with 256 additions and 24 deletions

View File

@@ -5,6 +5,7 @@
"type": "module",
"scripts": {
"dev": "bun --hot src/index.tsx",
"lint": "bun eslint",
"start": "NODE_ENV=production bun src/index.tsx",
"build": "bun run build.ts"
},
@@ -16,8 +17,10 @@
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/bun": "latest"
"eslint": "^9.38.0"
}
}