-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 KB
/
package.json
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
{
"name": "next-booking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seeder": "tsc seeder/seeder.ts --outDir .temp && node .temp/seeder/seeder.js && (rm -rf .temp || rmdir /s /q .temp)"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.7",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.3",
"cloudinary": "^2.3.1",
"cross-fetch": "^4.0.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"mapbox-gl": "^3.5.2",
"mdbreact": "^5.2.0",
"moment": "^2.30.1",
"moment-range": "^4.0.2",
"mongoose": "^8.5.1",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-connect": "^1.0.0",
"node-geocoder": "^4.3.0",
"nodemailer": "^6.9.14",
"react": "^18",
"react-bootstrap": "^2.10.4",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^7.3.0",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-js-pagination": "^3.0.3",
"react-redux": "^9.1.2",
"react-star-ratings": "^2.3.0",
"stripe": "^16.5.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"typescript": "^5"
}
}