-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.91 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
{
"name": "l2",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.6",
"scripts": {
"dev": "bash scripts/dev.sh",
"dev:cloud": "concurrently -k -n web,convex -c blue,magenta \"vite dev --port 5296\" \"bunx convex dev\"",
"dev:web": "vite dev --port 5296",
"convex:local": "bash scripts/convex-local-setup.sh",
"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",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint app src convex --ignore-pattern 'convex/_generated/**'",
"test": "bun run test:unit && bun run test:convex",
"test:unit": "bun test",
"test:convex": "vitest run",
"check": "bun run format:check && bun run typecheck && bun run typecheck:convex && bun run lint && bun run test",
"typecheck": "tsc --noEmit",
"typecheck:convex": "bunx convex typecheck",
"generate:og": "bun run scripts/generate-og.tsx"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^2.0.0",
"@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.1",
"@convex-dev/rate-limiter": "^0.3.2",
"@convex-dev/stripe": "^0.1.4",
"@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.41.0",
"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": {
"@edge-runtime/vm": "^5.0.0",
"@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",
"convex-test": "^0.0.53",
"eslint": "^9",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"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",
"vitest": "^4.1.9"
},
"type": "module"
}