{
  "name": "@tara/web",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/tara/web/src",
  "projectType": "application",
  "tags": ["scope:tara", "type:app", "platform:web"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/out", "{projectRoot}/.next"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "next build"
      },
      "configurations": {
        "production": {
          "command": "NODE_ENV=production next build"
        },
        "development": {
          "command": "next build --debug"
        }
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "next dev -p 3001"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "PORT=3001 HOSTNAME=0.0.0.0 node .next/standalone/apps/tara/web/server.js"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["apps/tara/web/src/**/*.{ts,tsx}"]
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "tsc --noEmit"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "vitest run"
      }
    },
    "test:watch": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "vitest"
      }
    },
    "test:coverage": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "vitest run --coverage"
      }
    },
    "storybook": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "storybook dev -p 6007"
      }
    },
    "storybook:build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/storybook-static"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "storybook build"
      }
    },
    "serve-static": {
      "executor": "@nx/web:file-server",
      "dependsOn": ["build"],
      "options": {
        "buildTarget": "@tara/web:build",
        "staticFilePath": "apps/tara/web/out",
        "port": 3001
      }
    },
    "lighthouse": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "lhci autorun"
      }
    },
    "lighthouse:collect": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "lhci collect"
      }
    },
    "lighthouse:assert": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "lhci assert"
      }
    },
    "test:performance": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "vitest run src/__tests__/performance"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/playwright-report", "{projectRoot}/test-results"],
      "options": {
        "cwd": "apps/tara/web",
        "command": "playwright test"
      },
      "configurations": {
        "ci": {
          "command": "playwright test --reporter=github"
        },
        "debug": {
          "command": "playwright test --debug"
        },
        "headed": {
          "command": "playwright test --headed"
        }
      }
    },
    "e2e:ui": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "playwright test --ui"
      }
    },
    "e2e:report": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "playwright show-report"
      }
    },
    "e2e:install": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/tara/web",
        "command": "playwright install --with-deps"
      }
    }
  }
}
