-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.92 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.92 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
86
87
88
89
90
91
92
{
"name": "screenshot-studio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate && next dev --webpack",
"build": "npx prisma generate && next build --webpack",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"upload-to-r2": "tsx scripts/upload-to-r2.ts",
"upload-all-to-r2": "tsx scripts/upload-all-to-r2.ts",
"upload-pattern": "tsx scripts/upload-pattern-to-r2.ts",
"upload-demo": "tsx scripts/upload-demo-to-r2.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.990.0",
"@aws-sdk/s3-request-presigner": "^3.990.0",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@hugeicons/react": "^1.1.5",
"@prisma/client": "^6.19.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@shadergradient/react": "^2.4.20",
"@sparticuz/chromium": "^141.0.0",
"@tanstack/react-query": "^5.90.21",
"@types/react-syntax-highlighter": "^15.5.13",
"@use-gesture/react": "^10.3.1",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"hugeicons-react": "^0.4.0",
"lucide-react": "^0.552.0",
"modern-screenshot": "^4.6.6",
"motion": "^12.23.24",
"mp4-muxer": "^5.2.2",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"playwright-core": "^1.56.1",
"posthog-js": "^1.352.0",
"prisma": "^6.19.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-moveable": "^0.56.0",
"react-syntax-highlighter": "^16.1.1",
"react-tweet": "^3.3.0",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"three": "^0.182.0",
"zod": "^4.1.12",
"zundo": "^2.3.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"dotenv": "^17.2.3",
"eslint": "^9.7.0",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.1",
"playwright": "^1.56.1",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.36.0"
}
}