-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "airbnb-clone",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.15.0",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"country-flag-icons": "^1.5.19",
"date-fns": "^4.1.0",
"leaflet": "^1.9.4",
"next": "15.4.6",
"next-auth": "^4.24.11",
"next-cloudinary": "^6.16.0",
"query-string": "^9.2.2",
"react": "19.1.0",
"react-date-range": "^2.0.1",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-leaflet": "^5.0.0",
"react-select": "^5.10.2",
"react-spinners": "^0.17.0",
"world-countries": "^5.1.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.12",
"@types/bcrypt": "^6.0.0",
"@types/leaflet": "^1.9.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-date-range": "^1.4.10",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"postcss": "^8.5.6",
"prisma": "^6.15.0",
"tailwindcss": "^4.1.12",
"typescript": "^5"
}
}