forked from vercel/nextjs-subscription-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 860 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
{
"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.11.0",
"@supabase/supabase-js": "1.3.2",
"classnames": "2.2.6",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-merge-refs": "1.1.0",
"stripe": "8.132.0",
"swr": "0.4.0",
"tailwindcss": "2.0.2"
},
"devDependencies": {
"postcss": "8.2.4",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}