-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
13 lines (13 loc) · 833 Bytes
/
package.json
File metadata and controls
13 lines (13 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name": "skill-flow-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run -w @skill-flow/domain build && npm run -w @skill-flow/shared-types build && npm run -w @skill-flow/integration build && npm run -w @skill-flow/storage build && npm run -w @skill-flow/core-engine build && npm run -w @skill-flow/query build && npm run -w @skill-flow/tui build && npm run -w skill-flow build",
"test": "npm run -w @skill-flow/domain test && npm run -w @skill-flow/shared-types test && npm run -w @skill-flow/integration test && npm run -w @skill-flow/storage test && npm run -w @skill-flow/core-engine test && npm run -w @skill-flow/query test && npm run -w @skill-flow/tui test && npm run -w skill-flow test",
"test:watch": "npm run -w skill-flow test:watch"
}
}