{
  "name": "@tara/api",
  "sourceRoot": "apps/tara/api/src",
  "projectType": "application",
  "tags": ["scope:tara", "type:api"],
  "targets": {
    "build": {
      "executor": "@nx/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "dist/apps/tara/api",
        "main": "apps/tara/api/src/index.ts",
        "tsConfig": "apps/tara/api/tsconfig.lib.json",
        "assets": []
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsx watch apps/tara/api/src/index.ts"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/api",
        "command": "vitest run --config vitest.config.ts"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["apps/tara/api/**/*.ts"]
      }
    },
    "load-test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/api",
        "command": "k6 run test/load/api-load.k6.js"
      }
    },
    "load-test:smoke": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/api",
        "command": "k6 run --scenario smoke test/load/api-load.k6.js"
      }
    },
    "load-test:stress": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/api",
        "command": "k6 run --scenario stress test/load/api-load.k6.js"
      }
    }
  }
}
