forked from efdevcon/media-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
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
{
"name": "av-tools",
"description": "Tools to manage our events' media, streaming, recording and archiving ",
"license": "MIT",
"version": "0.2.0",
"scripts": {
"dev": "remotion studio",
"build": "remotion render",
"upgrade": "remotion upgrade",
"test": "eslint src --ext ts,tsx,js,jsx && tsc",
"prettier": "prettier './src' --write",
"run": "ts-node ./src/index.ts",
"run:sheets": "ts-node ./src/scripts/sheets.ts",
"run:slides": "ts-node ./src/scripts/slides.ts",
"run:concat": "ts-node ./src/scripts/concat.ts",
"run:render": "ts-node ./src/scripts/render.ts",
"run:split": "ts-node ./src/scripts/split.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src": [
"lint",
"prettier"
]
},
"sideEffects": [
"*.css"
],
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@google-cloud/local-auth": "^2.1.1",
"@livepeer/react": "^2.5.8",
"@remotion/bundler": "4.0.1",
"@remotion/cli": "4.0.1",
"@remotion/zod-types": "4.0.1",
"cross-fetch": "^4.0.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"ethereum-blockies-base64": "^1.0.2",
"ffmpeg-concat": "^1.3.0",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"google-auth-library": "^9.0.0",
"googleapis": "^123.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remotion": "4.0.1",
"slugify": "^1.6.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@remotion/cli": "4.0.1",
"@remotion/eslint-config": "4.0.1",
"@remotion/tailwind": "4.0.1",
"@tsconfig/recommended": "^1.0.2",
"@types/dotenv": "^8.2.0",
"@types/ffmpeg-concat": "^1.1.2",
"@types/ffmpeg-static": "^3.0.1",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/node": "^20.3.3",
"@types/react": "^18.0.26",
"@types/web": "^0.0.86",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remotion": "4.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.4"
},
"packageManager": "yarn@1.22.18"
}