1064a0362b
Captures the existing lovelope.app codebase (Next.js App Router, custom Tailwind components, Prisma) as a rollback point prior to adopting shadcn/ui and a mobile-first redesign. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "lovelope",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"db:generate": "prisma generate",
|
|
"db:migrate": "prisma migrate deploy",
|
|
"db:migrate:dev": "prisma migrate dev",
|
|
"db:studio": "prisma studio",
|
|
"db:seed": "tsx prisma/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^5.15.0",
|
|
"canvas-confetti": "^1.9.3",
|
|
"framer-motion": "^11.3.0",
|
|
"nanoid": "^5.0.7",
|
|
"next": "14.2.35",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/canvas-confetti": "^1.9.0",
|
|
"@types/node": "^20.14.0",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"autoprefixer": "^10.4.19",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "14.2.35",
|
|
"postcss": "^8.4.39",
|
|
"prisma": "^5.15.0",
|
|
"tailwindcss": "^3.4.6",
|
|
"tsx": "^4.16.0",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|