mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
20 lines
538 B
JSON
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"
|
|
}
|
|
}
|