{ "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\"" } }