Files
cotizador/package.json
T
2026-06-10 02:04:37 -06:00

49 lines
1.1 KiB
JSON

{
"name": "cotizador-e3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:migrate": "npx prisma migrate dev",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "npx prisma studio",
"db:generate": "npx prisma generate"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"exceljs": "^4.4.0",
"jose": "^6.2.3",
"lucide-react": "^1.11.0",
"next": "16.2.4",
"pdfkit": "^0.18.0",
"pg": "^8.20.0",
"prisma": "^7.8.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pdfkit": "^0.17.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}