decla-red/package.json
schmelczerandras ec0520698e Fix build
2020-10-17 19:06:41 +02:00

25 lines
707 B
JSON

{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"frontend",
"shared",
"backend"
],
"nohoist": [
"**"
]
},
"devDependencies": {
"concurrently": "^5.3.0"
},
"scripts": {
"build": "yarn workspace shared run build && yarn workspace decla.red-frontend run build && yarn workspace declared-server run build",
"lint": "eslint './**/src/**/*.{js,ts,json}' --fix",
"frontend": "yarn workspace decla.red-frontend start",
"shared": "yarn workspace shared start",
"backend": "yarn workspace declared-server start",
"start": "concurrently --kill-others-on-fail \"yarn frontend\" \"yarn shared\" \"yarn backend\""
}
}