-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "focusbeacon",
"version": "0.2.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"supabase-typegen": "source .env && npx supabase gen types typescript --project-id $SUPABASE_PROJECT_ID --schema public > types/supabase.ts"
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@nivo/calendar": "^0.87.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@remixicon/react": "^4.2.0",
"@supabase/supabase-js": "^2.43.4",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-table": "^8.19.2",
"@types/canvas-confetti": "^1.6.4",
"@types/cookie": "^0.6.0",
"@types/mdx": "^2.0.13",
"@types/node": "20.12.13",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"autoprefixer": "10.4.19",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"framer-motion": "^11.2.10",
"geist": "^1.3.0",
"html-to-image": "^1.11.11",
"next": "^14.2.5",
"postcss": "8.4.38",
"posthog-js": "^1.157.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-responsive": "^10.0.0",
"react-slot-counter": "^3.0.1",
"recharts": "^2.12.7",
"supabase": "^1.172.2",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}