initial commit

This commit is contained in:
2026-01-28 21:18:51 -05:00
commit e284a6c409
24 changed files with 948 additions and 0 deletions

21
api/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "spark-api",
"scripts": {
"dev": "bun run --hot src/index.ts",
"db:gen": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push"
},
"dependencies": {
"@hono/zod-validator": "^0.7.4",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"hono": "^4.11.7",
"pg": "^8.17.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "latest",
"prisma": "^7.3.0"
}
}