Files
falah-mobile/package.json
T
wmj a1c5fecd83 pivot: migrate V1 mobile from Docker to Netlify serverless
- Switch Prisma schema from SQLite to PostgreSQL
- Add netlify.toml for Netlify deployment config
- Add @netlify/plugin-nextjs for serverless Next.js
- Remove Docker build files (Dockerfile, docker-compose, start.sh)
- Remove auto-healer and scripts directories
- Update next.config.ts (remove standalone output)
- Database: falah_mobile_v1 on Contabo Postgres
2026-06-28 23:02:48 +02:00

39 lines
884 B
JSON

{
"name": "falah-mobile",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@types/leaflet": "^1.9.21",
"bcryptjs": "^3.0.3",
"jose": "^6.2.3",
"leaflet": "^1.9.4",
"lucide-react": "^1.18.0",
"next": "16.2.7",
"pdfkit": "^0.19.1",
"prisma": "^5.22.0",
"qrcode": "^1.5.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-leaflet": "^5.0.0",
"stripe": "^22.2.1"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.12",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.7",
"tailwindcss": "^4.3.1",
"typescript": "^5"
}
}