- pnpm dev:local/dev:reset: orchestrate DB container, migrations, seed, and Next.js dev server in one command; Caddy snippet + docs for HTTPS via dev.ginnoir.com - Fix dev login on HTTPS: set both authjs.session-token and __Secure-authjs.session-token so Auth.js finds the session regardless of cookie name resolution - Suppress hydration mismatch on <html> caused by pre-paint script changing data-nav before React hydrates - VAPID startup warning if keys not configured; remove dead NEXT_PUBLIC_VAPID_PUBLIC_KEY var - PushOptIn: hydrate subscription state on mount; reuse existing subscription on iOS to avoid redundant prompts - sendPushToEndpoint: new function to send to a single device endpoint - sendTestNotification: scoped to the calling device's endpoint (ownership-verified) instead of all user subscriptions
79 lines
2.3 KiB
JSON
79 lines
2.3 KiB
JSON
{
|
|
"name": "famapp",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.33.3",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"dev:network": "next dev --hostname 0.0.0.0",
|
|
"dev:local": "node scripts/dev.mjs",
|
|
"dev:reset": "node scripts/dev-reset.mjs",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"test:e2e": "playwright test",
|
|
"typecheck": "tsc --noEmit",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"db:seed": "tsx --env-file=.env scripts/seed.ts",
|
|
"db:studio": "drizzle-kit studio",
|
|
"gen:icons": "node scripts/generate-icons.mjs",
|
|
"vapid:generate": "node scripts/vapid-generate.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.5",
|
|
"@eslint/js": "^10.0.1",
|
|
"@playwright/test": "^1.59.1",
|
|
"@tailwindcss/postcss": "^4.2.4",
|
|
"@types/node": "^22.9.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/react-grid-layout": "^2.1.0",
|
|
"@types/web-push": "^3.6.4",
|
|
"drizzle-kit": "^0.31.10",
|
|
"eslint": "^9.15.0",
|
|
"eslint-config-next": "^16.2.4",
|
|
"globals": "^15.12.0",
|
|
"pino-pretty": "^13.1.3",
|
|
"prettier": "^3.3.3",
|
|
"tailwindcss": "^4.2.4",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^5.6.3",
|
|
"typescript-eslint": "^8.15.0"
|
|
},
|
|
"dependencies": {
|
|
"@auth/drizzle-adapter": "^1.11.2",
|
|
"@base-ui/react": "^1.4.1",
|
|
"@fullcalendar/core": "^6.1.20",
|
|
"@fullcalendar/daygrid": "^6.1.20",
|
|
"@fullcalendar/interaction": "^6.1.20",
|
|
"@fullcalendar/react": "^6.1.20",
|
|
"@fullcalendar/timegrid": "^6.1.20",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"drizzle-orm": "^0.45.2",
|
|
"lucide-react": "^1.14.0",
|
|
"next": "^15.5.15",
|
|
"next-auth": "5.0.0-beta.31",
|
|
"pino": "^10.3.1",
|
|
"postgres": "^3.4.9",
|
|
"react": "^19.2.5",
|
|
"react-dom": "^19.2.5",
|
|
"react-grid-layout": "^2.2.3",
|
|
"shadcn": "^4.7.0",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tw-animate-css": "^1.4.0",
|
|
"web-push": "^3.6.7",
|
|
"zod": "^4.4.3",
|
|
"zod-to-json-schema": "^3.25.2"
|
|
}
|
|
}
|