-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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
62
63
{
"name": "learnly-primary-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"env": "vercel env pull .env.local",
"db:start": "supabase start",
"db:reset": "supabase db reset",
"db:push": "supabase db push",
"db:studio": "open http://localhost:54323/project/default",
"db:types": "supabase gen types typescript --local > src/assets/typescript/db.d.ts",
"stripe:webhook": "stripe listen --forward-to localhost:3000/api/stripe/webhooks"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@sendgrid/mail": "^7.7.0",
"@stripe/react-stripe-js": "^2.1.0",
"@stripe/stripe-js": "^1.52.1",
"@supabase/auth-helpers-nextjs": "^0.6.1",
"@supabase/supabase-js": "^2.21.0",
"@vercel/analytics": "^1.0.1",
"eventsource-parser": "^1.0.0",
"framer-motion": "^10.12.8",
"next": "13.4.4",
"openai": "^3.2.1",
"react": "18.2.0",
"react-canvas-confetti": "^1.4.0",
"react-dom": "18.2.0",
"react-flatpickr": "^3.10.13",
"react-markdown": "^8.0.7",
"react-to-print": "^2.14.12",
"sharp": "^0.32.1",
"sonner": "^0.3.5",
"stripe": "^12.4.0",
"tailwind-merge": "^1.12.0",
"uuid": "^9.0.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/marked": "^5.0.0",
"@types/node": "20.1.0",
"@types/react": "^18.2.12",
"@types/react-dom": "18.2.4",
"@types/react-flatpickr": "^3.8.8",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"encoding": "^0.1.13",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"postcss": "8.4.23",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}