This commit is contained in:
2026-05-01 15:45:27 -04:00
parent 0ea6005e7b
commit 61d53886a3
49 changed files with 513 additions and 1273 deletions

22
backend/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "app",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"dotenv": "^17.4.2",
"elysia": "latest",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/pg": "^8.20.0",
"bun-types": "latest",
"prisma": "^7.8.0"
},
"module": "src/index.js"
}