{
  "name": "juntora-backend-monorepo",
  "version": "1.0.0",
  "private": true,
  "description": "Root package to manage all Juntora microservices",
  "scripts": {
    "cleanup": "lsof -ti:3000,3002,3004,3005,3006 | xargs kill -9 2>/dev/null || true",
    "predev": "npm run cleanup",
    "dev": "concurrently -k -p \"[{name}]\" -n \"GATEWAY,IDENTITY,BILLING,CORE,AI,WORKER\" -c \"cyan.bold,blue.bold,green.bold,magenta.bold,yellow.bold,white.bold\" \"npm run dev:gateway\" \"npm run dev:identity\" \"npm run dev:billing\" \"npm run dev:core\" \"npm run dev:ai\"  \"npm run dev:workers\"",
    "dev:gateway": "cd gateway && npm run dev",
    "dev:identity": "cd identity && npm run dev",
    "dev:billing": "cd billing && npm run dev",
    "dev:core": "cd core && npm run dev",
    "dev:ai": "cd ai && npm run dev",
    "dev:workers": "cd workers && npm run dev",
    "install:all": "npm install && cd gateway && npm install && cd ../identity && npm install && cd ../billing && npm install && cd ../core && npm install && cd ../ai && npm install && cd ../workers && npm install"
  },
  "devDependencies": {
    "concurrently": "^8.2.2"
  },
  "dependencies": {
    "axios": "^1.13.4",
    "axios-cookiejar-support": "^6.0.5",
    "dotenv": "^17.2.4",
    "nodemon": "^3.1.14",
    "tough-cookie": "^6.0.0"
  }
}
