-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.21 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
{
"name": "home-sandbox",
"version": "0.0.0",
"description": "JS home automation sandbox",
"author": "Akos Kun",
"license": "MIT",
"private": true,
"workspaces": [
"hsb-service-utils",
"hsb-gatekeeper",
"hsb-keymaster",
"hsb-things",
"hsb-ui"
],
"scripts": {
"clean": "find . \\( -name \"node_modules\" -o -name \"build\" -o -name \"guide-build\" -o -name \".parcel-cache\" \\) -type d -prune -exec rm -rf '{}' +",
"clean-builds": "find . \\( -name \"build\" -o -name \"guide-build\" -o -name \".parcel-cache\" \\) -type d -prune -exec rm -rf '{}' +",
"clean-node-modules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"prep": "yarn workspace hsb-service-utils build",
"service-utils": "yarn workspace hsb-service-utils dev",
"gatekeeper": "yarn workspace hsb-gatekeeper dev",
"keymaster": "yarn workspace hsb-keymaster dev",
"things": "yarn workspace hsb-things dev",
"ui": "yarn workspace hsb-ui dev",
"styleguide": "yarn workspace hsb-ui styleguide-dev",
"dev": "concurrently -r --kill-others-on-fail \"yarn service-utils\" \"yarn keymaster\" \"yarn gatekeeper\" \"yarn things\"",
"deploy": "balena push home-sandbox"
},
"dependencies": {
"concurrently": "^5.1.0"
}
}