-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "quantum-flow-finance",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && node scripts/generate-build-info.js && next build",
"generate-images": "tsx scripts/generate-images.tsx",
"start": "next start",
"lint": "next lint",
"db:migration:new": "supabase migration new",
"db:migration:up": "supabase migration up",
"db:migration:down": "supabase migration down",
"db:reset": "supabase db reset"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@supabase/auth-helpers-nextjs": "^0.9.0",
"@supabase/supabase-js": "^2.39.0",
"chart.js": "^4.4.0",
"csv-stringify": "^6.4.4",
"next": "^14.2.24",
"next-auth": "^4.24.11",
"next-themes": "^0.2.1",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-icons": "^4.12.0",
"react-minimal-pie-chart": "^9.1.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@fontsource/inter": "^5.0.16",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8",
"sharp": "^0.32.6",
"satori": "^0.10.9",
"@vercel/og": "^0.5.20",
"png-to-ico": "^2.1.8",
"supabase": "^2.15.8",
"tailwindcss": "^3.3.0",
"tsx": "^4.7.0",
"typescript": "^5"
}
}