{
  "name": "@lilith/bff",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/lilith/bff/src",
  "projectType": "application",
  "tags": ["scope:lilith", "type:app", "layer:api"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "tsc"
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "tsx watch src/server.ts"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "node dist/server.js"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["apps/lilith/bff/src/**/*.ts"]
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "vitest run"
      }
    },
    "test:watch": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "vitest"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "tsc --noEmit"
      }
    },
    "clean": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "rm -rf dist"
      }
    },
    "docker:build": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/bff",
        "command": "docker build -t lilith-bff ."
      }
    }
  }
}
