feat: proper timeout and order of operations

This commit is contained in:
Nicolas Meienberger
2025-09-23 22:39:42 +02:00
parent 3734ba2925
commit 5695a8c700
22 changed files with 343 additions and 85 deletions

View File

@@ -2,8 +2,8 @@
"name": "@ironmount/server",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"typecheck": "tsc --noEmit",
"dev": "bun run --watch src/index.ts",
"tsc": "tsc --noEmit",
"gen:migrations": "drizzle-kit generate"
},
"dependencies": {
@@ -16,6 +16,7 @@
"hono": "^4.9.2",
"hono-openapi": "^0.4.8",
"http-errors-enhanced": "^3.0.2",
"node-cron": "^4.2.1",
"slugify": "^1.6.6",
"winston": "^3.17.0"
},