finished setting up server + added docker compose

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-26 23:06:06 -05:00
parent a6848fb7e9
commit 610c9606dc
13 changed files with 684 additions and 30 deletions
+15 -4
View File
@@ -1,17 +1,28 @@
{
"name": "server",
"name": "@turborepo-starter-project/server",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts"
"dev": "bun run --watch src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"auth:generate": "bunx auth generate --output lib/db/schema/auth.ts"
},
"dependencies": {
"better-auth": "^1.6.9",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"elysia": "latest",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"bun-types": "latest"
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"pg": "^8.20.0",
"postgres": "^3.4.9"
},
"module": "src/index.js"
}
}