Fix dependencies pour build Dokploy
All checks were successful
Build and Push App / build (push) Successful in 2m56s

This commit is contained in:
2026-04-20 12:24:11 +02:00
parent 144bf2133f
commit 68c396ea9a
3 changed files with 153 additions and 259 deletions

View File

@@ -3,47 +3,50 @@
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev -p 3000",
"dev:admin": "npm run dev --prefix admin -- -p 3001",
"all": "concurrently \"npm run dev\" \"npm run dev:admin\"",
"build": "prisma generate && next build",
"build:admin": "npm run build --prefix admin",
"start": "next start -p 3000",
"start:admin": "npm run start --prefix admin -- -p 3001",
"start": "next start",
"start:admin": "npm run start --prefix admin",
"lint": "next lint",
"lint:admin": "npm run lint --prefix admin"
},
"dependencies": {
"@google/genai": "^1.30.0",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@prisma/config": "^7.7.0",
"@prisma/config": "^7.6.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.14.0",
"@types/pg": "^8.16.0",
"autoprefixer": "^10.4.27",
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"lucide-react": "^0.554.0",
"next": "^16.1.6",
"pg": "^8.19.0",
"postcss": "^8.5.10",
"prisma": "^7.6.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0",
"recharts": "^3.8.1",
"tsx": "^4.21.0"
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~5.8.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.1",
"typescript": "~5.8.2"
"concurrently": "^9.2.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}
}