first commit

This commit is contained in:
2026-03-10 11:45:54 +08:00
commit e06d464a74
231 changed files with 15232 additions and 0 deletions

25
backend/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "backend",
"version": "0.1.0",
"main": "src/index.ts",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"start:dist": "bun run dist/server",
"build": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile dist/server src/index.ts",
"typecheck": "bun --bun tsc --noEmit"
},
"dependencies": {
"elysia": "^1.0.0",
"prisma": "^5.0.0",
"@prisma/client": "^5.0.0",
"better-auth": "^0.7.0",
"@elysiajs/cors": "^1.0.0",
"@elysiajs/eden": "^1.0.0"
},
"devDependencies": {
"@types/bun": "latest"
}
}