Files
myeasycms-v2/apps/web/package.json
Zaid Marzguioui ebd0fd4638
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 6m26s
Workflow / ⚫️ Test (push) Has been skipped
feat: complete CMS v2 with Docker, Fischerei, Meetings, Verband modules + UX audit fixes
Major changes:
- Docker Compose: full Supabase stack (11 services) equivalent to supabase CLI
- Fischerei module: 16 DB tables, waters/species/stocking/catch books/competitions
- Sitzungsprotokolle module: meeting protocols, agenda items, task tracking
- Verbandsverwaltung module: federation management, member clubs, contacts, fees
- Per-account module activation via Modules page toggle
- Site Builder: live CMS data in Puck blocks (courses, events, membership registration)
- Public registration APIs: course signup, event registration, membership application
- Document generation: PDF member cards, Excel reports, HTML labels
- Landing page: real Com.BISS content (no filler text)
- UX audit fixes: AccountNotFound component, shared status badges, confirm dialog,
  pagination, duplicate heading removal, emoji→badge replacement, a11y fixes
- QA: healthcheck fix, API auth fix, enum mismatch fix, password required attribute
2026-03-31 16:35:46 +02:00

109 lines
3.8 KiB
JSON

{
"name": "web",
"version": "0.1.0",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"analyze": "ANALYZE=true pnpm run build",
"build": "next build",
"build:test": "NODE_ENV=test next build",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "next dev | pino-pretty -c",
"start": "next start",
"start:test": "NODE_ENV=test next start",
"typecheck": "tsc --noEmit",
"supabase": "supabase",
"supabase:start": "supabase status || supabase start",
"supabase:stop": "supabase stop",
"supabase:reset": "supabase db reset",
"supabase:status": "supabase status",
"supabase:test": "supabase db test",
"supabase:db:lint": "supabase db lint",
"supabase:db:diff": "supabase db diff",
"supabase:deploy": "supabase link --project-ref $SUPABASE_PROJECT_REF && supabase db push",
"supabase:typegen": "pnpm run supabase:typegen:packages && pnpm run supabase:typegen:app",
"supabase:typegen:packages": "supabase gen types typescript --local > ../../packages/supabase/src/database.types.ts",
"supabase:typegen:app": "supabase gen types typescript --local > ./lib/database.types.ts",
"supabase:db:dump:local": "supabase db dump --local --data-only"
},
"dependencies": {
"@base-ui/react": "catalog:",
"@hookform/resolvers": "catalog:",
"@kit/accounts": "workspace:*",
"@kit/admin": "workspace:*",
"@kit/analytics": "workspace:*",
"@kit/auth": "workspace:*",
"@kit/billing": "workspace:*",
"@kit/billing-gateway": "workspace:*",
"@kit/booking-management": "workspace:*",
"@kit/cms": "workspace:*",
"@kit/course-management": "workspace:*",
"@kit/database-webhooks": "workspace:*",
"@kit/document-generator": "workspace:*",
"@kit/email-templates": "workspace:*",
"@kit/event-management": "workspace:*",
"@kit/finance": "workspace:*",
"@kit/i18n": "workspace:*",
"@kit/mailers": "workspace:*",
"@kit/member-management": "workspace:*",
"@kit/module-builder": "workspace:*",
"@kit/monitoring": "workspace:*",
"@kit/newsletter": "workspace:*",
"@kit/next": "workspace:*",
"@kit/notifications": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/supabase": "workspace:*",
"@kit/team-accounts": "workspace:*",
"@kit/ui": "workspace:*",
"@makerkit/data-loader-supabase-core": "catalog:",
"@makerkit/data-loader-supabase-nextjs": "catalog:",
"@marsidev/react-turnstile": "catalog:",
"@nosecone/next": "catalog:",
"@supabase/supabase-js": "catalog:",
"@tanstack/react-query": "catalog:",
"@tanstack/react-table": "catalog:",
"class-variance-authority": "catalog:",
"clsx": "catalog:",
"date-fns": "catalog:",
"lucide-react": "catalog:",
"next": "catalog:",
"next-intl": "catalog:",
"next-runtime-env": "catalog:",
"next-safe-action": "catalog:",
"next-sitemap": "catalog:",
"next-themes": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-hook-form": "catalog:",
"recharts": "catalog:",
"shadcn": "^4.1.1",
"tailwind-merge": "catalog:",
"tw-animate-css": "catalog:",
"urlpattern-polyfill": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@kit/fischerei": "workspace:*",
"@kit/site-builder": "workspace:*",
"@kit/sitzungsprotokolle": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/verbandsverwaltung": "workspace:*",
"@next/bundle-analyzer": "catalog:",
"@tailwindcss/postcss": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"babel-plugin-react-compiler": "catalog:",
"cssnano": "catalog:",
"pino-pretty": "catalog:",
"supabase": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:"
},
"browserslist": [
"last 1 versions",
"> 0.7%",
"not dead"
]
}