Complete rebuild of 22-year-old PHP CMS as modern SaaS: Database (15 migrations, 42+ tables): - Foundation: account_settings, audit_log, GDPR register, cms_files - Module Engine: modules, fields, records, permissions, relations + RPC - Members: 45+ field member profiles, departments, roles, honors, SEPA mandates - Courses: courses, sessions, categories, instructors, locations, attendance - Bookings: rooms, guests, bookings with availability - Events: events, registrations, holiday passes - Finance: SEPA batches/items (pain.008/001 XML), invoices - Newsletter: campaigns, templates, recipients, subscriptions - Site Builder: site_pages (Puck JSON), site_settings, cms_posts - Portal Auth: member_portal_invitations, user linking Feature Packages (9): - @kit/module-builder — dynamic low-code CRUD engine - @kit/member-management — 31 API methods, 21 actions, 8 components - @kit/course-management, @kit/booking-management, @kit/event-management - @kit/finance — SEPA XML generator + IBAN validator - @kit/newsletter — campaigns + dispatch - @kit/document-generator — PDF/Excel/Word - @kit/site-builder — Puck visual editor, 15 blocks, public rendering Pages (60+): - Dashboard with real stats from all APIs - Full CRUD for all 8 domains with react-hook-form + Zod - Recharts statistics - German i18n throughout - Member portal with auth + invitation system - Public club websites via Puck at /club/[slug] Infrastructure: - Dockerfile (multi-stage, standalone output) - docker-compose.yml (Supabase self-hosted + Next.js) - Kong API gateway config - .env.production.example
62 lines
2.0 KiB
JSON
62 lines
2.0 KiB
JSON
{
|
|
"name": "next-supabase-saas-kit-turbo",
|
|
"version": "3.0.5",
|
|
"private": true,
|
|
"author": {
|
|
"name": "MakerKit",
|
|
"url": "https://makerkit.dev"
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"turbo": "turbo",
|
|
"preinstall": "pnpm run --filter scripts requirements",
|
|
"postinstall": "manypkg fix",
|
|
"build": "turbo build --cache-dir=.turbo",
|
|
"clean": "git clean -xdf node_modules dist .next",
|
|
"clean:workspaces": "turbo clean",
|
|
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
|
|
"format": "oxfmt --check",
|
|
"format:fix": "oxfmt",
|
|
"lint": "oxlint",
|
|
"lint:fix": "oxlint --fix",
|
|
"healthcheck": "oxlint --fix && oxfmt && pnpm run typecheck && manypkg fix",
|
|
"typecheck": "turbo typecheck --affected --cache-dir=.turbo",
|
|
"test": "turbo test --cache-dir=.turbo",
|
|
"update": "pnpm update -r",
|
|
"syncpack:list": "pnpm dlx syncpack list-mismatches",
|
|
"syncpack:fix": "pnpm dlx syncpack fix-mismatches",
|
|
"supabase:web:start": "pnpm --filter web supabase:start",
|
|
"supabase:web:stop": "pnpm --filter web supabase:stop",
|
|
"supabase:web:typegen": "pnpm --filter web supabase:typegen",
|
|
"supabase:web:reset": "pnpm --filter web supabase:reset",
|
|
"supabase:web:test": "pnpm --filter web supabase:test",
|
|
"stripe:listen": "pnpm --filter '@kit/stripe' start",
|
|
"env:generate": "turbo gen env",
|
|
"env:validate": "turbo gen validate-env"
|
|
},
|
|
"devDependencies": {
|
|
"@manypkg/cli": "catalog:",
|
|
"@measured/puck": "catalog:",
|
|
"@react-pdf/renderer": "catalog:",
|
|
"@tiptap/pm": "catalog:",
|
|
"@tiptap/react": "catalog:",
|
|
"@tiptap/starter-kit": "catalog:",
|
|
"@turbo/gen": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"@types/papaparse": "catalog:",
|
|
"cross-env": "catalog:",
|
|
"exceljs": "catalog:",
|
|
"iban": "catalog:",
|
|
"oxfmt": "catalog:",
|
|
"oxlint": "catalog:",
|
|
"papaparse": "catalog:",
|
|
"server-only": "catalog:",
|
|
"turbo": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.10.0"
|
|
},
|
|
"packageManager": "pnpm@10.32.1"
|
|
}
|