-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.31 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
{
"name": "remotion-audio-visualizer",
"version": "0.1.0",
"scripts": {
"dev": "remotion preview",
"render:mp4": "remotion render ${npm_config_video} out/${npm_config_video}.mp4",
"render:gif": "remotion render ${npm_config_video} out/${npm_config_video}.gif",
"test:lint": "eslint . --ext=.ts,.tsx --max-warnings=0 --format=compact",
"test:types": "tsc",
"test:format": "prettier --check .",
"upgrade": "npm i $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo) --save-exact"
},
"dependencies": {
"@remotion/cli": "4.0.17",
"@remotion/google-fonts": "4.0.17",
"@remotion/media-utils": "4.0.17",
"clsx": "2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remotion": "4.0.17"
},
"devDependencies": {
"@remotion/eslint-config": "4.0.17",
"@remotion/eslint-plugin": "4.0.17",
"@remotion/tailwind": "4.0.17",
"@types/react": "18.2.18",
"@types/web": "0.0.112",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-react": "0.27.0",
"eslint-config-xo-typescript": "1.0.1",
"eslint-plugin-tailwindcss": "3.13.0",
"prettier": "3.0.1",
"prettier-plugin-tailwindcss": "0.4.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
}
}