mirror of
https://github.com/gregor-tokarev/cubicdone.git
synced 2026-09-14 11:06:21 +05:00
37 lines
940 B
JSON
37 lines
940 B
JSON
{
|
|
"name": "backend",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development tsx watch src/index.ts",
|
|
"start": "NODE_ENV=production tsx src/index.ts",
|
|
"migrations:gen": "drizzle-kit generate",
|
|
"migrations:push": "drizzle-kit push"
|
|
},
|
|
"dependencies": {
|
|
"@lucia-auth/adapter-drizzle": "^1.0.7",
|
|
"arctic": "^1.9.1",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"dayjs": "^1.11.10",
|
|
"dotenv": "^16.4.5",
|
|
"drizzle-orm": "^0.30.0",
|
|
"drizzle-zod": "^0.5.1",
|
|
"express": "^4.19.2",
|
|
"hono": "^4.0.10",
|
|
"lucia": "^3.2.0",
|
|
"morgan": "^1.10.0",
|
|
"postgres": "^3.4.3"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/cookie-parser": "^1.4.7",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/node": "^20.11.17",
|
|
"drizzle-kit": "^0.21.4",
|
|
"pg": "^8.11.3"
|
|
}
|
|
}
|