-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
{
"name": "record-talk-with-remotion",
"version": "1.0.0",
"description": "The X in MDX with Remotion",
"scripts": {
"start": "remotion preview src/index.tsx",
"build": "run-s build-video add-audio",
"build-video": "remotion render src/index.tsx Talk out.mp4 --overwrite",
"add-audio": "ffmpeg -y -i out.mp4 -i src/speaker.webm -c:v copy -map 0 -map 1:a -shortest talk.mp4",
"cut-video": "ffmpeg -ss 00:00:50 -i talk.mp4 -to 00:02:10 -c copy cut.mp4",
"upgrade": "remotion upgrade",
"server": "ts-node server.tsx",
"test": "eslint 'src' --ext ts,tsx && tsc"
},
"repository": {},
"license": "UNLICENSED",
"dependencies": {
"@babel/plugin-syntax-jsx": "7.12.13",
"@babel/preset-env": "7.12.13",
"@babel/preset-react": "7.12.13",
"@code-hike/mini-browser": "0.2.1",
"@code-hike/mini-editor": "0.2.1",
"@mdx-js/react": "^1.6.22",
"@remotion/bundler": "1.4.0-alpha.cb57b7a8",
"@remotion/cli": "1.4.0-alpha.cb57b7a8",
"@remotion/eslint-config": "1.4.0-alpha.cb57b7a8",
"@remotion/renderer": "1.4.0-alpha.cb57b7a8",
"@types/express": "^4.17.9",
"@types/react": "^17.0.0",
"babel-loader": "^8.2.2",
"express": "^4.17.1",
"mdx-loader": "3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"remotion": "1.4.0-alpha.cb57b7a8",
"theme-ui": "0.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}