forked from trykimu/videoeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.82 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
93
94
95
{
"name": "videoeditor",
"private": true,
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"migrate": "tsx app/lib/migrate.ts",
"typecheck": "react-router typegen && tsc",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-router/node": "^7.7.1",
"@react-router/serve": "^7.7.1",
"@remotion/bundler": "4.0.329",
"@remotion/captions": "4.0.331",
"@remotion/cli": "4.0.329",
"@remotion/eslint-plugin": "^4.0.329",
"@remotion/media-parser": "4.0.329",
"@remotion/player": "4.0.329",
"@remotion/renderer": "4.0.329",
"@remotion/transitions": "4.0.329",
"@types/cors": "^2.8.19",
"axios": "^1.12.0",
"better-auth": "^1.3.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"framer-motion": "^12.23.12",
"isbot": "^5.1.29",
"lucide-react": "^0.534.0",
"motion": "^12.23.12",
"next-themes": "^0.4.6",
"pg": "^8.12.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.3.0",
"react-resizable-panels": "^3.0.4",
"react-router": "^7.7.1",
"remotion": "4.0.329",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"zod": "4.0.9"
},
"pnpm": {
"overrides": {
"zod": "4.0.9"
}
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@react-router/dev": "^7.7.1",
"@tailwindcss/vite": "^4.1.11",
"@types/express": "^5.0.3",
"@types/multer": "^2.0.0",
"@types/node": "^24.1.0",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"multer": "^2.0.2",
"prettier": "^3.3.3",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"tsx": "^4.20.4",
"tw-animate-css": "^1.3.6",
"typescript": "^5.8.3",
"vite": "^7.0.7",
"vite-tsconfig-paths": "^5.1.4"
}
}