-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "backpackers-latest",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack --port 4092",
"build": "next build",
"start": "next start -p 4092",
"lint": "next lint",
"migrate": "node --loader ts-node/esm src/migrate.ts"
},
"dependencies": {
"@googlemaps/react-wrapper": "^1.2.0",
"@next-auth/mongodb-adapter": "^1.1.3",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"axios": "^1.12.2",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"busboy": "^1.6.0",
"classnames": "^2.5.1",
"cookie": "^1.0.2",
"dotenv": "^17.0.1",
"formidable": "^3.5.4",
"google-auth-library": "^10.5.0",
"googleapis": "^156.0.0",
"i18n-iso-countries": "^7.14.0",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"lucide-react": "^0.525.0",
"mongoose": "^8.16.1",
"next": "^15.3.5",
"next-auth": "^4.24.11",
"next-swagger-doc": "^0.4.1",
"nextjs-toploader": "^3.8.16",
"nodemailer": "^6.10.1",
"papaparse": "^5.5.3",
"quill": "^2.0.3",
"react": "^18.3.1",
"react-datepicker": "^8.4.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.60.0",
"react-leaflet": "^4.2.1",
"react-phone-input-2": "^2.15.1",
"react-phone-number-input": "^3.4.12",
"react-select": "^5.10.2",
"recharts": "^3.1.2",
"sonner": "^2.0.6",
"swagger-ui-react": "^5.26.2",
"twilio": "^5.7.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/google.maps": "^3.58.1",
"@types/node": "^20.19.4",
"@types/papaparse": "^5.5.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-phone-number-input": "^3.1.37",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}