Files
CreaBook/server/package.json
2026-04-05 03:08:53 +02:00

38 lines
948 B
JSON

{
"name": "creabook-server",
"version": "1.0.0",
"description": "CreaBook backend API with cloud AI integration",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@libsql/client": "^0.17.2",
"@prisma/adapter-libsql": "^7.6.0",
"@prisma/client": "^7.6.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"axios": "^1.6.8",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.3",
"multer": "^1.4.5-lts.1",
"prisma": "^7.6.0",
"sharp": "^0.33.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}