-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 813 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "taskboard-workspace",
"private": true,
"version": "0.0.3",
"packageManager": "pnpm@10.28.0",
"scripts": {
"bootstrap": "pnpm install",
"dev": "pnpm -r --parallel --if-present dev",
"typecheck": "pnpm -r --if-present typecheck",
"lint": "pnpm -r --if-present lint",
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"test:domain": "pnpm --filter taskery-shared test -- src/contracts.test.ts",
"release:patch": "pnpm --filter taskery exec npm version patch --no-git-tag-version",
"release:minor": "pnpm --filter taskery exec npm version minor --no-git-tag-version",
"release:major": "pnpm --filter taskery exec npm version major --no-git-tag-version",
"release:publish": "pnpm --filter taskery publish --access public --no-git-checks"
}
}