mystuff2/package.json
Greg aa0d14b679 Add favorites/library app with Coolify deployment setup
Personal favorites tracker: Next.js 16 App Router, Prisma/PostgreSQL,
NextAuth v5 credentials auth with admin/friend roles, category-driven
custom fields, lending library, optional S3 cover images.

Deployment: multi-stage Dockerfile (standalone output) whose entrypoint
runs prisma migrate deploy and the idempotent seed on every boot; env
validation made lazy so next build works in the secret-free image.
See DEPLOY.md for Coolify setup.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-12 12:20:41 +02:00

48 lines
1.1 KiB
JSON

{
"name": "mystuff2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@aws-sdk/client-s3": "^3.1080.0",
"@prisma/client": "^6.19.3",
"@tiptap/extension-image": "^3.27.2",
"@tiptap/extension-link": "^3.27.2",
"@tiptap/react": "^3.27.2",
"@tiptap/starter-kit": "^3.27.2",
"bcryptjs": "^3.0.3",
"date-fns": "^4.4.0",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"next-auth": "^5.0.0-beta.31",
"react": "19.2.4",
"react-dom": "19.2.4",
"sanitize-html": "^2.17.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"prisma": "^6.19.3",
"tailwindcss": "^4",
"tsx": "^4.23.0",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}