remove baresip for now, use ices2

This commit is contained in:
rdl technix 2021-09-03 19:08:48 +02:00
parent 3409fb8ab8
commit 333146a182
10 changed files with 123 additions and 20 deletions

View file

@ -1,8 +1,18 @@
{
"private": true,
"workspaces": ["backend", "frontend", "common"],
"workspaces": [
"backend",
"frontend",
"common"
],
"scripts": {
"build": "cd frontend && yarn build",
"start": "cd backend && yarn start"
"start": "cd backend && yarn start",
"dev": "concurrently npm:dev:*",
"dev:backend": "cd backend && yarn dev",
"dev:frontend": "cd frontend && yarn dev"
},
"dependencies": {
"concurrently": "^6.2.1"
}
}