-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "onlineillustrator",
"version": "3.9.0",
"private": true,
"scripts": {
"dev": "HOST=0.0.0.0 PORT=3190 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next node_modules",
"stripe:login": "stripe login",
"stripe:listen": "stripe listen --forward-to=localhost:3190/api/webhooks",
"stripe:fixtures": "stripe fixtures fixtures/stripe-fixtures.json",
"supabase:start": "npx supabase start",
"supabase:stop": "npx supabase stop",
"supabase:status": "npx supabase status",
"supabase:restart": "npm run supabase:stop && npm run supabase:start",
"supabase:reset": "npx supabase db reset",
"supabase:link": "npx supabase link",
"supabase:generate-types": "npx supabase gen types typescript --local --schema public > types_db.ts",
"supabase:generate-migration": "npx supabase db diff | npx supabase migration new",
"supabase:generate-seed": "npx supabase db dump --data-only -f supabase/seed.sql",
"supabase:push": "npx supabase db push",
"supabase:pull": "npx supabase db pull"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@stripe/stripe-js": "^4.3.0",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "^2.45.2",
"@types/node": "^20.11.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vercel/analytics": "^1.3.1",
"animate.css": "^4.1.1",
"aos": "^2.3.4",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"framer-motion": "^11.3.30",
"html-to-image": "^1.11.11",
"js-cookie": "^3.0.5",
"jspdf": "^2.5.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.436.0",
"negotiator": "^0.6.3",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"openai": "^4.56.0",
"postcss": "^8.4.41",
"react": "^18.3.1",
"react-accessible-accordion": "^5.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"react-i18next": "^15.0.1",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.1",
"react-responsive-masonry": "^2.1.7",
"react-syntax-highlighter": "^15.5.0",
"react-tabs": "^6.0.2",
"sharp": "^0.33.2",
"stripe": "^16.8.0",
"swiper": "^11.0.5",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"vaul": "^0.9.1"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/negotiator": "^0.6.1",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-modal-video": "^1.2.3",
"@types/react-responsive-masonry": "^2.1.3",
"@types/react-syntax-highlighter": "^15.5.13",
"server-only": "^0.0.1"
}
}