forked from vercel/nextjs-subscription-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "nextjs-subscription-payments",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"stripe:listen": "stripe listen --forward-to=localhost:3000/api/webhooks --project-name=saas-starter"
},
"dependencies": {
"@stripe/stripe-js": "1.22.0",
"@supabase/supabase-js": "1.28.5",
"classnames": "2.3.1",
"next": "^12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-merge-refs": "1.1.0",
"stripe": "8.194.0",
"swr": "1.1.2-beta.0",
"tailwindcss": "3.0.6"
},
"devDependencies": {
"@types/classnames": "2.3.1",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"autoprefixer": "^10.4.0",
"postcss": "8.4.5",
"prettier": "2.2.1",
"typescript": "^4.5.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}