{ "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", "lint": "eslint .", "lint:fix": "eslint . --fix", "typecheck": "bun --bun tsc --noEmit" }, "dependencies": { "@elysiajs/cors": "^1.0.0", "@elysiajs/eden": "^1.0.0", "@prisma/client": "^7.4.2", "better-auth": "^1.5.4", "dotenv": "^17.3.1", "elysia": "^1.0.0", "prisma": "^7.4.2" }, "devDependencies": { "@prisma/config": "^7.4.2", "@types/bun": "latest", "eslint": "^10.0.3" } }