-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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": {
"@headlessui/react": "^1.3.0",
"@reach/portal": "^0.15.2",
"@stripe/stripe-js": "1.11.0",
"@supabase/supabase-js": "^1.18.0",
"@tailwindcss/typography": "^0.4.1",
"@types/body-scroll-lock": "^3.1.0",
"@types/react": "^17.0.13",
"@types/react-input-autosize": "^2.2.1",
"@types/uuid": "^8.3.1",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "2.2.6",
"cuid": "^2.1.8",
"dayjs": "^1.10.7",
"fp-ts": "^2.12.2",
"html-react-parser": "^1.2.7",
"markdown-it": "^12.2.0",
"next": "10.0.5",
"next-seo": "^4.26.0",
"next-use-posthog": "^1.16.0",
"performant-array-to-tree": "^1.9.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-google-button": "^0.7.2",
"react-input-autosize": "^3.0.0",
"react-merge-refs": "1.1.0",
"react-textarea-autosize": "^8.3.3",
"stripe": "8.132.0",
"swr": "0.4.0",
"tailwindcss": "2.0.2",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@editorjs/editorjs": "^2.22.2",
"@editorjs/paragraph": "^2.8.0",
"postcss": "8.2.4",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"react-editor-js": "^1.10.0"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}