Files
carry-your-live/backend/package.json
T
2026-08-06 11:16:47 +02:00

38 lines
972 B
JSON

{
"name": "carry-your-live-backend",
"version": "1.0.0",
"description": "Backend API for Carry Your Live",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"express": "^4.21.0",
"express-rate-limit": "^8.6.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.5",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.24.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}