-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1014 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": "cloud-build-monitor",
"version": "1.0.0",
"description": "A tool to monitor your CI/CD workflows running on Google Cloud Build.",
"main": "index.js",
"scripts": {
"build": "yarn workspaces foreach -piv run build",
"deploy": "yarn workspaces foreach -piv run deploy",
"build:app": "yarn workspace app build",
"deploy:app": "yarn workspace app deploy",
"build:ciccd-service": "yarn workspace ciccd-service build",
"deploy:ciccd-service": "yarn workspace ciccd-service deploy",
"build:forward-service": "yarn workspace forward-service build",
"deploy:forward-service": "yarn workspace forward-service deploy",
"print-config": "./scripts/print-config.sh",
"dev": "yarn workspace app dev",
"start": "yarn workspace app start"
},
"keywords": [],
"author": "Thomas Dekiere",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"installConfig": {
"hoistingLimits": "workspaces"
}
}