scraps/backend/package.json
2026-01-29 18:01:52 -05:00

28 lines
627 B
JSON

{
"name": "backend",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/index.js",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"elysia": "^1.4.22",
"pg": "^8.17.2",
"redis": "^5.10.0"
}
}