forked from Nutlope/twitterbio
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 KB
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
62
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhooks",
"local": "concurrently --names \"NEXT,SUPABASE,STRIPE\" -c \"bgBlue.bold,bgMagenta.bold,bgRed.bold\" \"npm run dev\" \"supabase start\" \"npm run stripe:listen\""
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^2.0.13",
"@lexical/react": "^0.7.7",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/font": "^13.1.6",
"@next/mdx": "^13.3.1",
"@stripe/stripe-js": "^1.52.0",
"@supabase/auth-helpers-nextjs": "^0.5.4",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.2.6",
"@supabase/supabase-js": "^2.7.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tiptap/extension-table": "^2.0.0-beta.220",
"@tiptap/extension-table-cell": "^2.0.0-beta.220",
"@tiptap/extension-table-header": "^2.0.0-beta.220",
"@tiptap/extension-table-row": "^2.0.0-beta.220",
"@tiptap/pm": "^2.0.0-beta.220",
"@tiptap/react": "^2.0.0-beta.220",
"@tiptap/starter-kit": "^2.0.0-beta.220",
"@vercel/analytics": "^0.1.8",
"clsx": "^1.2.1",
"eventsource-parser": "^0.0.5",
"framer-motion": "^8.4.3",
"jwt-decode": "^3.1.2",
"lexical": "^0.7.7",
"marked": "^4.2.12",
"next": "latest",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.42.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-use-measure": "^2.1.1",
"stripe": "^11.16.0",
"typewriter-effect": "^2.19.0"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"concurrently": "^8.0.1",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4"
}
}