Initial commit: deardiary project setup

This commit is contained in:
lotherk
2026-03-26 19:57:20 +00:00
commit 3f9bc1f484
73 changed files with 8627 additions and 0 deletions

26
backend/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "totalrecall-backend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun",
"start": "bun run src/index.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"bcryptjs": "^2.4.3",
"hono": "^4.6.10",
"jose": "^5.9.6",
"nanoid": "^5.0.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"prisma": "^5.22.0",
"typescript": "^5.6.3"
}
}