24 lines
554 B
JSON
24 lines
554 B
JSON
{
|
|
"name": "APP_TEMPLATE-api",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:push": "drizzle-kit push",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"db:studio": "drizzle-kit studio",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"better-auth": "^1.0.0",
|
|
"drizzle-orm": "^0.38.0",
|
|
"elysia": "^1.2.0",
|
|
"postgres": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"drizzle-kit": "^0.30.0"
|
|
}
|
|
}
|