-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.39 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
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
99
{
"name": "voin",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-fix": "prettier --write .",
"stripe:login": "stripe login",
"stripe:listen": "stripe listen --forward-to=http://127.0.0.1:54321/functions/v1/stripe_webhook",
"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 --local --schema public > types_db.ts && cp types_db.ts ../supabase/functions/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": {
"@hookform/resolvers": "^4.1.3",
"@next/font": "^14.2.15",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-toast": "^1.2.13",
"@radix-ui/react-toggle": "^1.1.8",
"@radix-ui/react-tooltip": "^1.2.6",
"@shadcn/ui": "^0.0.4",
"@stripe/stripe-js": "4.0.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.43.5",
"apexcharts": "^4.7.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"glob": "^11.0.1",
"lightweight-charts": "^5.0.7",
"lucide-react": "^0.479.0",
"motion": "^12.12.2",
"next": "^15.2.1",
"posthog-js": "^1.139.6",
"react": "19.0.0",
"react-apexcharts": "^1.7.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-merge-refs": "^2.1.1",
"react-syntax-highlighter": "^5.8.0",
"recharts": "^2.15.3",
"rimraf": "^6.0.1",
"stripe": "^15.12.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.20",
"eslint": "^9.22.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-tailwindcss": "^3.17.3",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"supabase": "^1.178.2",
"typescript": "^5.5.2"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}
}