forked from anymouschina/TapCanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "tapcanvas-workspace",
"private": true,
"packageManager": "pnpm@10.8.1",
"scripts": {
"dev": "./scripts/dev.sh local",
"dev:web": "pnpm --filter @tapcanvas/web dev",
"dev:api": "pnpm --filter @tapcanvas/api dev",
"dev:api:stable": "pnpm --filter @tapcanvas/api dev:stable",
"dev:agents": "pnpm --filter agents dev",
"build": "pnpm run build:web && pnpm run build:api && pnpm run build:agents",
"build:web": "pnpm --filter @tapcanvas/web build",
"build:api": "pnpm --filter @tapcanvas/api build",
"build:agents": "pnpm --filter agents build",
"test": "pnpm run test:web && pnpm run test:api && pnpm run test:agents",
"test:web": "pnpm --filter @tapcanvas/web test",
"test:api": "pnpm --filter @tapcanvas/api test",
"test:agents": "pnpm --filter agents test",
"compose:up": "docker compose up -d",
"compose:down": "docker compose down"
}
}