{
  "$schema": "./node_modules/nx/schemas/workspace-schema.json",
  "version": 2,
  "projects": {
    "auth": "packages/auth",
    "core": "packages/core",
    "graphql": {
      "root": "packages/graphql",
      "sourceRoot": "packages/graphql/src",
      "projectType": "library",
      "targets": {
        "lint": {
          "executor": "@nrwl/linter:eslint",
          "outputs": ["{options.outputFile}"],
          "options": {
            "lintFilePatterns": ["packages/graphql/**/*.ts"]
          }
        },
        "test": {
          "executor": "@nrwl/jest:jest",
          "outputs": ["coverage/packages/graphql"],
          "options": {
            "jestConfig": "packages/graphql/jest.config.ts",
            "passWithNoTests": true
          }
        }
      },
      "tags": []
    },
    "integration": {
      "root": "integration",
      "type": "library",
      "sourceRoot": "integration/src",
      "targets": {
        "test": {
          "executor": "@nrwl/jest:jest",
          "options": {
            "coverage": false,
            "jestConfig": "integration/jest.config.ts",
            "passWithNoTests": true
          }
        }
      }
    },
    "webhooks": "packages/webhooks"
  }
}
