decla-red/package.json
2020-10-17 17:24:24 +02:00

22 lines
635 B
JSON

{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"frontend",
"shared",
"backend"
],
"nohoist": [
"**"
]
},
"scripts": {
"build": "yarn workspaces shared run build && yarn workspaces frontend run build && yarn workspaces backend 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\""
}
}