-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "fullstackweek-trips",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/payment/success",
"postinstall": "npx prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} --transpile-only src/lib/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^5.4.1",
"@stripe/stripe-js": "^2.1.11",
"date-fns": "^2.30.0",
"next": "13.5.4",
"next-auth": "^4.23.2",
"react": "^18",
"react-country-flag": "^3.1.0",
"react-currency-input-field": "^3.6.11",
"react-datepicker": "^4.20.0",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-toastify": "^9.1.3",
"stripe": "^14.3.0",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^4.15.2",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"prisma": "^5.4.1",
"tailwindcss": "^3",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}