-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.5 KB
/
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
31
32
33
34
35
36
37
38
{
"name": "root",
"private": true,
"scripts": {
"catdetection": "./scripts/demo-catdetection.sh",
"check": "lerna run check",
"cli": "npm run start --silent --prefix packages/cli",
"compile": "lerna run compile",
"deploy:acr": "./deploy/deploy-acr.sh",
"deploy:aks": "./deploy/deploy-aks.sh",
"deploy:arm": "./deploy/deploy-arm.sh -g",
"predev:azure": "serve -l 9001 deploy >/dev/null &",
"dev:azure": "ngrok start -config .ngrok.yml arm",
"dev:deploy:arm": "./deploy/deploy-arm.sh --dev -g",
"dev:updateWorker": "./scripts/dev-worker.sh",
"postdev:azure": "kill $(lsof -t -i:9001)",
"fix": "lerna run fix",
"laboratory": "dotenv -- npm run start --silent --prefix packages/laboratory",
"pack": "lerna bootstrap --ignore-scripts && lerna exec npm pack",
"pack:laboratory:appservice": "rimraf ./dist/laboratory && mkdir -p ./dist/laboratory && npm run pack && cd ./dist/laboratory && npm init -y && npm install --only=prod ../../packages/sds/*.tgz ../../packages/laboratory/*.tgz && zip -r sds-laboratory.zip package*.json node_modules",
"postinstall": "lerna bootstrap",
"test": "lerna run test"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"dotenv-cli": "^4.0.0",
"gts": "^2.0.2",
"lerna": "^3.22.1",
"ngrok": "^3.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {}
}