generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "my-app",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.8",
"@internationalized/date": "^3.5.6",
"@nextui-org/calendar": "^2.0.12",
"@nextui-org/react": "^2.4.8",
"@nextui-org/system": "^2.2.6",
"@nextui-org/theme": "^2.2.11",
"@pdfme/common": "^5.2.11",
"@pdfme/generator": "^5.2.11",
"@prisma/client": "^5.22.0",
"@types/nodemailer": "^6.4.17",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"framer-motion": "^11.11.17",
"lodash": "^4.17.21",
"next": "15.0.3",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.16",
"npm": "^10.9.2",
"pg": "^8.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^10.0.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/google.maps": "^3.58.1",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}