forked from oomol-lab/open-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.08 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
{
"name": "open-flow-workspace",
"private": true,
"packageManager": "bun@1.4.0",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"oxfmt": "^0.60.0"
},
"scripts": {
"build": "bun run --workspaces --if-present build",
"check": "bun run format -- --check && bun run --workspaces --if-present check",
"dev": "bun run dev:server",
"dev:designer": "bun run --filter @oomol-lab/open-flow designer:dev",
"dev:server": "bun run --filter @oomol-lab/open-flow-server dev",
"format": "oxfmt .",
"lint": "bun run --workspaces --if-present lint",
"test": "bun run --workspaces --if-present test",
"test:coverage": "bun run --workspaces --if-present test:coverage",
"test:docker": "bun run --filter @oomol-lab/open-flow-server test:docker",
"test:command-artifact": "bun run --filter @oomol-lab/open-flow-command test:package",
"test:npm-package": "bun run --filter @oomol-lab/open-flow test:package",
"test:package": "bun run test:npm-package && bun run test:command-artifact"
}
}