refactor: switch from go to bun

This commit is contained in:
Nicolas Meienberger
2025-08-31 17:32:00 +02:00
parent a0be690eb9
commit a16fc37b44
76 changed files with 4283 additions and 4173 deletions

21
apps/server/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@ironmount/server",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"gen:migrations": "drizzle-kit generate"
},
"dependencies": {
"@hono/arktype-validator": "^2.0.1",
"@scalar/hono-api-reference": "^0.9.13",
"arktype": "^2.1.20",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.4",
"hono": "^4.9.2",
"hono-openapi": "^0.4.8"
},
"devDependencies": {
"@types/bun": "^1.2.20",
"drizzle-kit": "^0.31.4"
}
}