-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.3 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.3 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
{
"name": "l2",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.6",
"scripts": {
"dev": "concurrently -n web,convex -c blue,magenta \"vite dev --port 5296\" \"bunx convex dev\"",
"dev:web": "vite dev --port 5296",
"build": "vite build",
"build:vercel": "bunx convex deploy --cmd 'bun run build' --cmd-url-env-var-name VITE_CONVEX_URL",
"start": "vite preview --port 5296",
"lint": "eslint app src convex --ignore-pattern 'convex/_generated/**'",
"typecheck": "tsc --noEmit",
"typecheck:convex": "bunx convex typecheck",
"generate:og": "bun run scripts/generate-og.tsx"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.991.0",
"@aws-sdk/s3-request-presigner": "^3.991.0",
"@clerk/tanstack-react-start": "^0.27.14",
"@convex-dev/presence": "^0.3.0",
"@convex-dev/rate-limiter": "^0.3.2",
"@convex-dev/stripe": "^0.1.3",
"@mux/mux-node": "^12.8.1",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@stripe/stripe-js": "^8.7.0",
"@tanstack/react-router": "^1.160.2",
"@tanstack/react-router-devtools": "^1.160.2",
"@tanstack/react-start": "^1.160.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.31.7",
"hls.js": "^1.6.15",
"isbot": "^5",
"lucide-react": "^0.563.0",
"nanoid": "^5.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"stripe": "^20.3.0",
"tailwind-merge": "^3.4.0",
"video.js": "^8.23.4"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sharp": "^0.32.0",
"@types/video.js": "^7.3.58",
"@vitejs/plugin-react": "^5.1.0",
"concurrently": "^9.2.1",
"eslint": "^9",
"satori": "^0.19.2",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4"
},
"type": "module"
}