build ready (I hope)

This commit is contained in:
2025-08-10 18:46:45 -04:00
parent 32c516bf37
commit eed6db3373
12 changed files with 68 additions and 62 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "server",
"name": "@games/server",
"scripts": {
"dev": "concurrently 'pnpm run devserver' 'pnpm run dbstudio'",
"devserver": "NODE_ENV=development PORT=5001 bun run --hot src/index.ts",
@@ -8,17 +8,16 @@
"dbtypes": "pnpm dlx prisma generate",
"dbsync": "pnpm dlx prisma migrate dev",
"dbwipe": "pnpm dlx prisma migrate reset",
"start": "NODE_ENV=production PORT=5001 bun run src/index.ts"
"prod": "NODE_ENV=production bun run src/index.ts",
"start": "concurrently 'pnpm run prod' 'pnpm run dbstudio'"
},
"dependencies": {
"@elysiajs/cors": "^1.3.3",
"@elysiajs/static": "^1.3.0",
"@hono/zod-validator": "^0.7.2",
"@games/shared": "workspace:*",
"@prisma/client": "6.13.0",
"elysia": "^1.3.8",
"hono": "^4.8.12",
"object-hash": "^3.0.0",
"zod": "^4.0.15"
"object-hash": "^3.0.0"
},
"devDependencies": {
"@types/bun": "latest",