mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-06 04:48:14 -05:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "bayesbond",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "npx prisma migrate deploy || [ \"$DATABASE_URL\" = \"prisma+postgres://accelerate.prisma-data.net/?api_key=API_KEY\" ] && next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"postinstall": "npx prisma generate --no-engine"
|
|
},
|
|
"dependencies": {
|
|
"@auth/prisma-adapter": "^2.10.0",
|
|
"@next-auth/prisma-adapter": "^1.0.7",
|
|
"@prisma/client": "^6.12.0",
|
|
"@prisma/extension-accelerate": "^2.0.2",
|
|
"bcryptjs": "^3.0.2",
|
|
"lucide-react": "^0.503.0",
|
|
"next": "^15.4.4",
|
|
"next-auth": "^4.24.7",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-icons": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@types/bcryptjs": "^3.0.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.1.7",
|
|
"postcss": "^8",
|
|
"prisma": "^6.12.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5"
|
|
},
|
|
"prisma": {
|
|
"seed": "npx tsx prisma/seed.ts"
|
|
}
|
|
}
|