{
  "name": "@metis/web",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/metis/web/src",
  "projectType": "application",
  "tags": ["scope:metis", "type:app", "platform:web"],
  "targets": {
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/web",
        "command": "next dev -p 3020"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/.next"],
      "options": {
        "cwd": "apps/metis/web",
        "command": "next build"
      },
      "configurations": {
        "production": {
          "command": "NODE_ENV=production next build"
        },
        "development": {
          "command": "next build --debug"
        }
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/metis/web",
        "command": "next start -p 3020"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/web",
        "command": "npx eslint src"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/web",
        "command": "tsc --noEmit"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/web",
        "command": "vitest run"
      }
    },
    "e2e": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/metis/web",
        "command": "playwright test"
      }
    },
    "lighthouse": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/metis/web",
        "command": "pnpm lighthouse"
      }
    }
  }
}
