Skip to content

Commit

Permalink
Refactor package.json to add "postinstall" script for Prisma generation
Browse files Browse the repository at this point in the history
  • Loading branch information
GithmiHashara committed Sep 13, 2024
1 parent 8a4e153 commit 7e5e4dd
Showing 1 changed file with 25 additions and 16 deletions.
41 changes: 25 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,59 @@
{
"name": "staynest",
"name": "Parkpal",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^2.1.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.19.1",
"axios": "^1.7.7",
"@prisma/client": "^5.18.0",
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^4.3.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"fs": "^0.0.2",
"leaflet": "^1.9.4",
"next": "14.2.7",
"next-cloudinary": "^6.12.0",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.10.1",
"next-superjson-plugin": "^0.6.3",
"query-string": "^9.1.0",
"react": "^18",
"react-date-range": "^2.0.1",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-hook-form": "^7.52.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-leaflet": "^4.2.1",
"react-select": "^5.8.0",
"react-spinners": "^0.14.1",
"sharp": "^0.33.5",
"stripe": "^16.8.0",
"world-countries": "^5.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/leaflet": "^1.9.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/node": "22.5.1",
"@types/react": "18.3.5",
"@types/react-date-range": "^1.4.9",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.41",
"prisma": "^5.19.1",
"prisma": "^5.18.0",
"react-leaflet": "^4.2.1",
"tailwindcss": "^3.4.10",
"typescript": "^5"
"typescript": "^5.5.4"
}
}
}

0 comments on commit 7e5e4dd

Please sign in to comment.