dbgate/package.json
2020-02-03 20:09:02 +01:00

20 lines
538 B
JSON

{
"private": true,
"name": "@dbgate/all",
"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"
}
}