{
  "name": "lakshmi-api-gateway",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/lakshmi/api-gateway/src",
  "projectType": "application",
  "tags": ["scope:lakshmi", "type:app", "lakshmi:tier:app"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "command": "npx tsup src/index.ts --format esm --out-dir dist",
        "cwd": "apps/lakshmi/api-gateway"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eslint src/ --no-warn-ignored",
        "cwd": "apps/lakshmi/api-gateway"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "npx vitest run",
        "cwd": "apps/lakshmi/api-gateway"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/lakshmi/api-gateway"
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "options": {
        "command": "node --import tsx/esm src/index.ts",
        "cwd": "apps/lakshmi/api-gateway"
      }
    }
  }
}
