-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "screenstation",
"version": "0.3.3",
"private": true,
"scripts": {
"dev-worker": "cd applications/worker && yarn dev",
"dev-api": "cd applications/api && yarn dev",
"dev-front": "cd applications/frontend && yarn start",
"build-worker": "cd applications/worker && yarn build && yarn compile",
"build-api": "cd applications/api && yarn build && yarn compile",
"build-front": "cd applications/frontend && yarn build:prod && yarn compile",
"build": "export TARGET_ENV=x64 && yarn build-worker && yarn build-api && yarn build-front",
"build:arm": "export TARGET_ENV=armv7 && yarn build-api && yarn build-api && yarn build-front"
},
"devDependencies": {
"lerna": "^3.20.2"
}
}