{ "name": "afrohub", "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 && npm run build:admin", "build:admin": "npm install --prefix admin && npm run build --prefix admin", "start": "npx prisma db push && 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.6.0", "@prisma/client": "^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.7.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-hot-toast": "^2.6.0", "recharts": "^3.8.1", "tailwindcss": "^4.2.2", "tsx": "^4.21.0", "typescript": "~5.8.2" }, "devDependencies": { "concurrently": "^9.2.1" }, "prisma": { "seed": "tsx prisma/seed.ts" } }