forked from vercel/nextjs-subscription-payments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "saasy-icons",
"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=saasy-icons"
},
"dependencies": {
"@featureboard/js-sdk": "^0.10.0-beta.5",
"@featureboard/node-sdk": "^0.12.0-beta.7",
"@featureboard/react-sdk": "^0.6.1-beta.5",
"@stripe/stripe-js": "1.22.0",
"@supabase/supabase-js": "1.29.4",
"@tailwindcss/custom-forms": "^0.2.1",
"classnames": "2.3.1",
"next": "12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-merge-refs": "1.1.0",
"stripe": "8.201.0",
"swr": "1.2.0",
"tailwindcss": "3.0.18",
"typeface-roboto-mono": "^1.1.13"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@types/node": "^16.11.21",
"@types/react": "^17.0.38",
"autoprefixer": "^10.4.2",
"postcss": "8.4.5",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "7.2.3",
"prettier": "2.5.1",
"typescript": "^4.5.5"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"semi": false
}
}