forked from The-Swarm-Corporation/swarms-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.09 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
{
"name": "nextjs-subscription-payments",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-fix": "prettier --write .",
"stripe:login": "stripe login",
"stripe:listen": "stripe listen --forward-to=localhost:3000/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 reset",
"supabase:link": "npx supabase link",
"supabase:generate-types": "npx supabase gen types typescript --project-id 'epvxmjqxtlqhxrpcrldq' --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 push",
"supabase:pull": "npx supabase pull"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@stripe/react-stripe-js": "^2.6.0",
"@stripe/stripe-js": "2.4.0",
"@supabase/auth-helpers-nextjs": "^0.9.0",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.39.3",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-query": "latest",
"@tanstack/react-table": "^8.13.2",
"@trpc/client": "^11.0.0-next-beta.308",
"@trpc/next": "^11.0.0-next-beta.308",
"@trpc/react-query": "^11.0.0-next-beta.308",
"@trpc/server": "^11.0.0-next-beta.308",
"@types/canvas-confetti": "^1.6.4",
"@uiw/react-markdown-preview": "^5.1.1",
"@uiw/react-prismjs": "^1.3.6",
"canvas-confetti": "^1.9.2",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"framer-motion": "^11.0.14",
"lucide-react": "^0.352.0",
"next": "latest",
"next-themes": "^0.2.1",
"openai": "^4.28.4",
"prismjs": "^1.29.0",
"rate-limiter-flexible": "^5.0.0",
"react": "latest",
"react-dom": "latest",
"react-merge-refs": "^2.1.1",
"recharts": "^2.12.3",
"simplex-noise": "^4.0.1",
"stripe": "^14.16.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.14.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"supabase": "^1.142.2",
"typescript": "^5.3.3"
}
}