-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"stripe:listen": "stripe listen --forward-to=localhost:3000/api/stripe/webhooks",
"studio": "npx prisma studio"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.0",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.2.1",
"@stripe/stripe-js": "^1.35.0",
"@tailwindcss/forms": "^0.5.2",
"luxon": "^3.0.1",
"next": "12.0.10",
"next-auth": "^4.10.3",
"nodemailer": "^6.7.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "8.0.0",
"stripe": "^10.6.0"
},
"devDependencies": {
"@types/luxon": "^3.0.1",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"autoprefixer": "^10.4.8",
"postcss": "^8.4.16",
"prisma": "^4.2.1",
"tailwindcss": "^3.1.8",
"typescript": "4.5.5"
}
}