feat: initial project setup for Meme Studio

Next.js 14 App Router application for managing homophone pun game levels:

- Better Auth with Prisma adapter for authentication
- MySQL database with Prisma ORM
- Level CRUD operations with drag-and-drop reordering
- Tencent COS integration for image uploads
- shadcn/ui components with Tailwind CSS
- TanStack Query for server state management
This commit is contained in:
richarjiang
2026-03-15 15:01:47 +08:00
commit 4854f1cefc
43 changed files with 11543 additions and 0 deletions

56
package.json Normal file
View File

@@ -0,0 +1,56 @@
{
"name": "meme-studio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"next": "14.2.28",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@prisma/client": "^6.5.0",
"better-auth": "^1.2.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.69.0",
"react-hook-form": "^7.54.2",
"@hookform/resolvers": "^4.1.3",
"zod": "^3.24.2",
"cos-nodejs-sdk-v5": "^2.14.0",
"uuid": "^11.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.0.2",
"lucide-react": "^0.483.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"bcryptjs": "^3.0.2",
"qcloud-cos-sts": "^3.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"typescript": "^5.8.2",
"prisma": "^6.5.0",
"tsx": "^4.19.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.28",
"tailwindcss": "^3.4.17",
"postcss": "^8.5.3",
"autoprefixer": "^10.4.21"
}
}