dbgate/package.json
2020-03-05 07:35:23 +01:00

21 lines
603 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:sqltree": "yarn workspace @dbgate/sqltree 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"
}
}