-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 2 KB
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": "motion-gpu-monorepo",
"private": true,
"version": "0.0.1",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"docs:changelog": "node ./scripts/generate-changelog-docs.mjs",
"dev": "bun run dev:web",
"dev:web": "bun run build:motion-gpu && bun run dev:web:live",
"dev:web:live": "bash -lc 'set -euo pipefail; bun run --cwd packages/motion-gpu build:watch & WATCH_PID=$!; trap \"kill $WATCH_PID 2>/dev/null || true\" EXIT INT TERM; bun run --cwd apps/web dev'",
"build": "bun run build:motion-gpu && bun run build:web",
"build:web": "bun run --cwd apps/web build",
"build:motion-gpu": "bun run --cwd packages/motion-gpu build",
"preview": "bun run build:motion-gpu && bun run --cwd apps/web preview",
"deploy:web": "bun run build:motion-gpu && bun run --cwd apps/web deploy",
"check": "bun run build:motion-gpu && bun run check:motion-gpu && bun run check:web",
"check:web": "bun run --cwd apps/web check",
"check:motion-gpu": "bun run --cwd packages/motion-gpu check",
"test": "bun run build:motion-gpu && bun run test:motion-gpu",
"test:motion-gpu": "bun run --cwd packages/motion-gpu test",
"perf:motion-gpu:core": "bun run --cwd packages/motion-gpu perf:core",
"perf:motion-gpu:core:check": "bun run --cwd packages/motion-gpu perf:core:check",
"perf:motion-gpu:core:baseline": "bun run --cwd packages/motion-gpu perf:core:baseline",
"perf:motion-gpu": "bun run --cwd packages/motion-gpu perf:runtime",
"perf:motion-gpu:check": "bun run --cwd packages/motion-gpu perf:runtime:check",
"perf:motion-gpu:baseline": "bun run --cwd packages/motion-gpu perf:runtime:baseline",
"lint": "bun run lint:motion-gpu && bun run lint:web",
"lint:web": "bun run --cwd apps/web lint",
"lint:motion-gpu": "bun run --cwd packages/motion-gpu lint",
"format": "bun run --cwd apps/web format && bun run --cwd packages/motion-gpu format"
},
"dependencies": {
"prettier-plugin-tailwindcss": "^0.7.2"
}
}