start script

This commit is contained in:
Jan Prochazka
2020-02-03 20:09:02 +01:00
parent b6dea799c1
commit 680bed549f
2 changed files with 55 additions and 3 deletions

View File

@@ -1,6 +1,19 @@
{
"private": true,
"name": "@dbgate/all",
"workspaces": ["packages/*"],
"scripts": {}
"workspaces": [
"packages/*"
],
"scripts": {
"start:api": "yarn workspace @dbgate/api start",
"start:web": "yarn workspace @dbgate/web start",
"start": "concurrently --kill-others-on-fail \"yarn start:api\" \"yarn start:web\"",
"ts:api": "yarn workspace @dbgate/api ts",
"ts:web": "yarn workspace @dbgate/web ts",
"ts": "yarn ts:api && yarn ts:web"
},
"dependencies": {
"concurrently": "^5.1.0"
}
}