forked from remotion-dev/remotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 834 Bytes
/
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
{
"name": "remotion-monorepo",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"test": "turbo run lint test",
"lint": "turbo run lint",
"build": "turbo run build",
"ci": "turbo run build lint test --concurrency=50%",
"watch": "pnpm run --recursive --stream --parallel watch",
"release": "lerna publish --force-publish",
"clean": "rm -rf packages/**/dist && lerna clean --yes && rm -rf node_modules && rm -rf .cache && rm -rf packages/**/tsconfig.tsbuildinfo && rm -rf packages/**/.turbo"
},
"engines": {
"node": ">=14",
"pnpm": ">=3"
},
"devDependencies": {
"@types/node": "^18.11.2"
},
"dependencies": {
"lerna": "^4.0.0",
"turbo": "1.5.6"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}