56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "promptforge",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"type-check": "tsc --noEmit",
|
|
"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": {
|
|
"@mantine/code-highlight": "^7.3.2",
|
|
"@mantine/core": "^7.3.2",
|
|
"@mantine/dropzone": "^7.3.2",
|
|
"@mantine/form": "^7.3.2",
|
|
"@mantine/hooks": "^7.3.2",
|
|
"@mantine/notifications": "^7.3.2",
|
|
"@mantine/tiptap": "^7.3.2",
|
|
"@monaco-editor/react": "^4.6.0",
|
|
"@prisma/client": "^5.7.1",
|
|
"@tabler/icons-react": "^2.44.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"clsx": "^2.0.0",
|
|
"framer-motion": "^10.16.16",
|
|
"lucide-react": "^0.303.0",
|
|
"mysql2": "^3.14.3",
|
|
"next": "14.0.4",
|
|
"next-auth": "^4.24.5",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hot-toast": "^2.4.1",
|
|
"tailwind-merge": "^2.2.0",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/node": "^20.10.5",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"autoprefixer": "^10.4.16",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-next": "14.0.4",
|
|
"postcss": "^8.4.32",
|
|
"prisma": "^5.7.1",
|
|
"tailwindcss": "^3.4.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|