{
    "name": "graphql-distribution",
    "version": "1.0.0",
    "repository": "git@github.com:theorchard/graphql-distribution.git",
    "private": true,
    "engines": {
        "node": ">=24"
    },
    "prettier": "@theorchard/prettier-config",
    "lint-staged": {
        "*.{js,ts,json,md}": [
            "prettier --write"
        ]
    },
    "scripts": {
        "prepare": "husky install",
        "build:copy_schema": "mkdir -p ./build/src/ && cp -R ./src/schema ./build/src/schema",
        "build:server": "yarn tsc -p ./tsconfig.build.json && tscpaths -p ./tsconfig.build.json -s ./src -o ./build",
        "build": "yarn clean && yarn build:server && yarn build:copy_schema",
        "clean": "rm -rf build && mkdir build",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "generate:types:integration": "rm -rf tests/generated/* && graphql-codegen -c codegen.test.yml",
        "generate:types": "yarn graphql-codegen && yarn prettier --write src/generated/index.ts",
        "lint:js": "eslint --ext .js,.ts --cache --cache-location .cache/.eslintcache src tests",
        "lint:schema": "graphql-schema-linter src/schema/*.graphql",
        "lint": "yarn lint:js && yarn lint:schema",
        "start": "dotenv -- yarn nodemon --exec ts-node --project ./tsconfig.json -r tsconfig-paths/register ./src/index.ts",
        "test:integration": "jest --config jest.integration.config.json  --runInBand --verbose",
        "test:unit": "jest --config jest.config.json",
        "test:types": "yarn tsc --project tsconfig.json --noEmit",
        "test": "yarn format:check && yarn test:unit",
        "test:unit:watch": "yarn jest --watchAll",
        "watch": "yarn test:unit:watch"
    },
    "dependencies": {
        "@aws-sdk/client-s3": "^3.993.0",
        "@aws-sdk/client-sfn": "^3.993.0",
        "@aws-sdk/s3-request-presigner": "^3.993.0",
        "@sentry/node": "^10.59.0",
        "@theorchard/dataloader-zod": "^1.0.0",
        "@theorchard/datasource-ows": "4.0.2",
        "@theorchard/field-validator": "^1.5.0",
        "@theorchard/graphql-server": "5.1.2",
        "@theorchard/jwt-service-handler": "^4.6.7",
        "@theorchard/neighbouring-rights-common": "^9.0.1",
        "dataloader": "^2.2.2",
        "dayjs": "^1.11.7",
        "fast-xml-parser": ">=5.7.0",
        "graphql-scalars": "^1.22.2",
        "lodash": "^4.18.1",
        "minimatch": ">=10.2.1",
        "uuid": "^14.0.0",
        "zod": "^3.21.4"
    },
    "devDependencies": {
        "@aws-sdk/client-secrets-manager": "^3.993.0",
        "@graphql-codegen/add": "^6.0.0",
        "@graphql-codegen/cli": "^6.3.1",
        "@graphql-codegen/typescript": "^5.0.9",
        "@graphql-codegen/typescript-operations": "^5.0.9",
        "@graphql-codegen/typescript-resolvers": "^5.1.7",
        "@graphql-tools/jest-transform": "^2.0.0",
        "@theorchard/backend-jwtauth-testing": "^0.4.1",
        "@theorchard/backend-secrets-manager-sdk-v3": "^0.2.0",
        "@theorchard/eslint-config-ts-prettier": "^2.2.3",
        "@theorchard/jest-config-node": "^1.0.0",
        "@theorchard/prettier-config": "^1.0.0",
        "@types/adm-zip": "^0.5.7",
        "@types/jest": "^29.2.2",
        "@types/lodash": "^4.17.24",
        "@types/node": "^14.14.41",
        "@types/uuid": "^9.0.1",
        "adm-zip": "^0.5.16",
        "canvas": "^3.2.1",
        "dd-trace": "^5.80.0",
        "dotenv-cli": "^8.0.0",
        "eslint": "^9.20.1",
        "graphql": "^16.11.0",
        "graphql-request": "^7.4.0",
        "graphql-schema-linter": "^3.0.1",
        "husky": "^8.0.1",
        "jest": "^29.7.0",
        "jest-transform-graphql": "^2.1.0",
        "lint-staged": "^15.4.3",
        "nodemon": "3.1.14",
        "prettier": "^2.7.1",
        "tar": "^7.5.16",
        "ts-jest": "^29.0.3",
        "ts-node": "^10.9.1",
        "tsconfig-paths": "^3.9.0",
        "tscpaths": "^0.0.9",
        "typescript": "^5.1.6"
    },
    "resolutions": {
        "@babel/core": "^7.29.6",
        "@apollo/server": ">=5.5.0",
        "@apollo/federation-internals": ">=2.12.3",
        "@isaacs/brace-expansion": ">=5.0.1",
        "minimatch": ">=10.2.1",
        "immutable": ">=3.8.3",
        "flatted": ">=3.4.2",
        "ajv": ">=6.14.0",
        "diff": "^4.0.4",
        "fast-xml-parser": ">=5.7.0",
        "fast-xml-builder": ">=1.1.7",
        "uuid": "^14.0.0",
        "braces": ">=3.0.3",
        "micromatch": ">=4.0.8",
        "fast-uri": ">=3.1.2",
        "@protobufjs/utf8": ">=1.1.1",
        "@smithy/core": "^3.23.14",
        "form-data": "^4.0.6",
        "brace-expansion": "2.0.3",
        "picomatch": "4.0.4",
        "handlebars": "4.7.9",
        "path-to-regexp": "8.4.0",
        "yaml": "2.8.3",
        "sha.js": "2.4.12",
        "js-yaml": "^4.2.0",
        "body-parser": "2.2.1",
        "tar": ">=7.5.16",
        "shell-quote": ">=1.8.4"
    }
}
