generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
30 lines (30 loc) · 959 Bytes
/
package.json
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
{
"name": "@finos/calm-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"shared",
"cli",
"docs",
"calm-visualizer"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:cli": "npm run build --workspace shared --workspace cli",
"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",
"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",
"visualizer:run": "npm run dev --workspace calm-visualizer"
},
"devDependencies": {
"link": "^2.1.1",
"npm-run-all2": "^5.0.0",
"vitest": "^2.1.8"
}
}