-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
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
73
74
75
76
77
78
79
80
81
{
"name": "chez-maxime-vercel-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@mui/icons-material": "^5.16.7",
"@prisma/client": "^5.18.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/toastify-js": "^1.12.3",
"@types/validatorjs": "^3.15.5",
"@vercel/fun": "^1.1.1",
"@vercel/node": "^3.2.8",
"@vercel/postgres": "^0.9.0",
"@vercel/speed-insights": "^1.0.12",
"axios": "^1.7.4",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.3",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.4.0",
"clsx": "^2.1.1",
"components": "^0.1.0",
"debug": "^4.3.1",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"libphonenumber-js": "^1.11.5",
"lucide-react": "^0.427.0",
"mapbox-gl": "^3.5.2",
"material-react-toastify": "^10.0.5",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.10.0",
"nodemailer": "^6.9.14",
"react": "^18",
"react-bootstrap": "^2.10.4",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-leaflet": "^4.2.1",
"react-modal": "^3.16.1",
"react-select": "^5.8.0",
"react-toastify": "^10.0.5",
"semver": "^7.5.2",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tar": "^6.2.1",
"undici": "^6.19.7",
"validator": "^13.12.0",
"validatorjs": "^3.22.1",
"vercel": "^32.3.0",
"zod": "^3.23.8",
"zod-prisma-types": "^3.1.8"
},
"devDependencies": {
"@types/leaflet": "^1.9.12",
"@types/node": "^20.14.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-modal": "^3.16.3",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} seed.js"
}
}