-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "template-remix",
"private": true,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint . && tsc",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"remotion:studio": "remotion studio",
"remotion:renderlambda": "remotion lambda render remotion-remix-example LogoAnimation out/logo-animation-lambda-rendered.mp4",
"remotion:deploy": "ts-node app/deploy.ts"
},
"sideEffects": [
"*.css"
],
"dependencies": {
"@remix-run/css-bundle": "2.12.1",
"@remix-run/node": "2.12.1",
"@remix-run/react": "2.12.1",
"@remix-run/serve": "2.12.1",
"@remix-run/vercel": "1.19.3",
"@remotion/cli": "^4.0.0",
"@remotion/lambda": "^4.0.0",
"@remotion/player": "^4.0.0",
"@vercel/remix": "2.5.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"remotion": "^4.0.0",
"isbot": "4.1.0"
},
"devDependencies": {
"@remix-run/dev": "2.12.1",
"@remix-run/eslint-config": "2.12.1",
"@remotion/eslint-plugin": "^4.0.0",
"@types/node": "20.12.14",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"dotenv": "16.0.3",
"eslint": "8.56.0",
"prettier": "3.3.3",
"ts-node": "10.9.1",
"typescript": "5.5.4"
}
}