-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "zoom-background-videos",
"version": "1.0.0",
"description": "Background videos for Zoom calls, made with Remotion",
"scripts": {
"start": "remotion preview src/index.tsx",
"build": "yarn build:space-journey",
"build:space-journey": "remotion render src/index.tsx SpaceJourney space-journey.mp4",
"upgrade": "remotion upgrade",
"server": "ts-node server.tsx",
"test": "eslint 'src' --ext ts,tsx,js,jsx && tsc",
"format": "prettier --write ."
},
"repository": {},
"license": "UNLICENSED",
"dependencies": {
"@remotion/bundler": "^1.0.0",
"@remotion/cli": "^1.0.0",
"@remotion/eslint-config": "^1.0.0",
"@remotion/renderer": "^1.0.0",
"@types/express": "^4.17.9",
"@types/react": "^17.0.0",
"eslint": "^7.15.0",
"express": "^4.17.1",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"react": "^17.0.1",
"remotion": "^1.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
}
}