Files
app-padel/apps/web/package.json
Ivan df7660f37d feat(db): add seed script with demo data
Add comprehensive seed script for testing the application with realistic demo data:
- Organization "Padel Pro Demo"
- 3 sites (Norte, Sur, Centro) with different schedules
- 2 courts per site (standard and premium pricing)
- Admin users (1 super admin + 3 site admins)
- Product categories (Bebidas, Snacks, Equipamiento, Alquiler)
- Sample products with pricing
- 3 membership plans (Basico, Premium, VIP)
- 5 sample clients with one Premium membership

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 07:43:22 +00:00

50 lines
1.3 KiB
JSON

{
"name": "@padel-pro/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@padel-pro/shared": "*",
"@prisma/client": "^5.10.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.330.0",
"next": "14.2.0",
"next-auth": "^4.24.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"prisma": "^5.10.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}