forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 830 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
{
"name": "@finos/calm-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"shared",
"cli",
"docs"
],
"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",
"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"
},
"devDependencies": {
"npm-run-all2": "^5.0.0"
}
}