-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
102 lines (102 loc) · 3.27 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
99
100
101
102
{
"name": "extrapolate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"tunnel": "cloudflared tunnel --url http://localhost:3000",
"gen-types": "pnpm dlx supabase gen types typescript --linked -s public > lib/supabase/types_db.ts",
"gen-types-2": "pnpm dlx supabase gen types typescript --project-id zufrwdcmaojotovkjeww --schema public > lib/supabase/types_db.ts",
"gen-schema": "pnpm dlx supabase db dump --linked -f supabase/schema.sql",
"fixtures:webhook": "stripe fixtures stripe/webhook.json",
"fixtures:products": "stripe fixtures stripe/products.json"
},
"dependencies": {
"@dub/analytics": "^0.0.15",
"@next/third-parties": "^14.2.5",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.1",
"@upstash/ratelimit": "^1.1.3",
"@upstash/redis": "^1.30.1",
"@vercel/functions": "^1.0.2",
"@vercel/og": "^0.6.2",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dub": "^0.36.2",
"embla-carousel-react": "^8.0.4",
"focus-trap-react": "^10.2.3",
"framer-motion": "^11.1.9",
"lucide-react": "0.378.0",
"ms": "^2.1.3",
"nanoid": "^5.0.7",
"next": "14.2.3",
"next-themes": "^0.3.0",
"plaiceholder": "^3.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "^9.0.1",
"react-wrap-balancer": "^1.1.0",
"replicate": "^0.29.4",
"sharp": "^0.33.3",
"sonner": "^1.5.0",
"stripe": "^15.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.0",
"usehooks-ts": "^3.1.0",
"vaul": "^0.9.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"@types/ms": "^0.7.34",
"@types/node": "20.12.10",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"supabase": "^1.165.0",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
]
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"trailingComma": "all",
"printWidth": 80,
"tabWidth": 2,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}