{ "version": "2.0.0", "tasks": [ { "label": "Dev API", "type": "shell", "command": "cd api; npm install; npx nodemon server.js", "problemMatcher": [], "isBackground": true, "group": "build" }, { "label": "Dev UI", "type": "shell", "command": "cd ui; npm install; npm run dev", "problemMatcher": [], "isBackground": true, "group": "build" }, { "label": "Dev All", "dependsOn": ["Dev API", "Dev UI"], "dependsOrder": "parallel" } ] }