feat: scaffold Hono server with auth and health check

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-17 14:07:19 +05:30
parent 1e9e1f7e29
commit bc014fd587
9 changed files with 126 additions and 0 deletions

21
server/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@droidclaw/server",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@droidclaw/shared": "workspace:*",
"hono": "^4.7.0",
"better-auth": "^1.3.27",
"drizzle-orm": "^0.44.5",
"postgres": "^3.4.7"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"typescript": "^5.9.2"
}
}