forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.27 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.27 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
{
"name": "@finos/calm-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"shared",
"cli",
"docs",
"calm-hub-ui"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:cli": "npm run build --workspace shared --workspace cli",
"build:shared": "npm run build --workspace shared",
"build:docs": "npm run build --workspace docs",
"test": "npm run test --workspaces --if-present",
"test:cli": "npm run build:cli && npm run test --workspace cli",
"test:shared": "npm run build:shared && npm run test --workspace shared",
"lint": "npm run lint --workspaces --if-present",
"lint-fix": "npm run lint-fix --workspaces --if-present",
"watch": "run-p watch:cli watch:shared",
"watch:cli": "npm run watch --workspace cli",
"watch:shared": "npm run watch --workspace shared",
"link:cli": "npm link --workspace cli",
"calm-hub-ui:run": "npm run start --workspace calm-hub-ui"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.1.1",
"link": "^2.1.1",
"npm-run-all2": "^8.0.0",
"vitest": "^3.1.1"
},
"dependencies": {
"@finos/calm-shared": "^0.2.2"
}
}