merca y ch

This commit is contained in:
Marcelo
2026-03-31 13:21:48 +00:00
commit 773bfab393
326 changed files with 52705 additions and 0 deletions

47
package.json Normal file
View File

@@ -0,0 +1,47 @@
{
"name": "casa-benell",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "node --import tsx --test src/lib/**/*.test.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"prisma:seed": "prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.16.2",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"lucide-react": "^0.564.0",
"next": "14.2.33",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.13",
"prisma": "^6.16.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.7.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@types/node": "^20",
"@types/nodemailer": "^7.0.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.33",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5"
}
}