You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "MiroShark - A concise and versatile swarm intelligence engine for predicting everything",
"scripts": {
"setup": "npm install && cd frontend && npm install",
"setup:backend": "cd backend && uv sync",
"setup:all": "npm run setup && npm run setup:backend",
"predev": "node -e \"const{execSync:e}=require('child_process');[3000,5001].forEach(p=>{try{const o=e('lsof -ti:'+p,{encoding:'utf8'}).trim();if(o){e('kill -9 '+o);console.log('Killed stale process on port '+p)}}catch{}})\"",
"dev": "concurrently -n \"backend,frontend\" -c \"green,cyan\" \"npm run backend\" \"npm run frontend\"",
"backend": "cd backend && uv run python run.py",
"frontend": "cd frontend && npm run dev -- --host",