Files
prompt/apps/web/package.json
dsyoon 27540269b7 Initial commit: add FastAPI MVP (모프) and existing web app
Includes FastAPI+Jinja2+HTMX+SQLite implementation with seed categories, plus deployment templates.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-16 17:17:22 +09:00

42 lines
1.0 KiB
JSON

{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prisma:generate": "prisma generate",
"db:push": "prisma db push --schema prisma/schema.prisma",
"db:migrate": "prisma migrate dev --schema prisma/schema.prisma",
"db:seed": "prisma db seed --schema prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^6.16.0",
"@tailwindcss/typography": "^0.5.19",
"next": "16.1.6",
"prisma": "^6.16.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "tsx prisma/seed.ts"
}
}