{
    "name": "graphql-user",
    "version": "1.0.0",
    "description": "graphql users",
    "repository": "https://github.com/theorchard/graphql-user.git",
    "author": "theorchard",
    "license": "MIT",
    "private": true,
    "engines": {
        "node": ">=22.18.0"
    },
    "prettier": "@theorchard/prettier-config",
    "lint-staged": {
        "*.{js,jsx,ts,tsx,scss,css,json,md,yaml}": [
            "prettier --write"
        ]
    },
    "scripts": {
        "start": "dotenv -- nodemon --exec ts-node --project ./tsconfig.json -r dotenv/config ./src/index.ts",
        "lint": "yarn format:check && yarn lint:js && yarn lint:schema",
        "lint:js": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"tests/**/*.js\" \"tests/**/*.ts\"",
        "lint:schema": "graphql-schema-linter src/schema/*.graphql",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "test": "yarn test:unit && yarn lint",
        "test:unit": "jest --config jest.config.json src/",
        "test:integration": "jest --config jest.integration.config.json tests/integration/ --runInBand",
        "clean": "rm -rf build && mkdir build && mkdir build/src",
        "build:cypher": "cp -R ./src/cypher ./build",
        "build:schema": "cp -R ./src/schema ./build/src",
        "build:server": "tsc -p ./tsconfig.build.json",
        "build": "yarn clean && yarn build:server && yarn build:schema && yarn build:cypher",
        "generate:types": "graphql-codegen && prettier --write src/resolvers/generated/index.ts && graphql-integration-codegen 'src/schema' 'tests/integration/definitions/index.ts' 'tests/integration'"
    },
    "dependencies": {
        "@apollo/server": "^5.5.1",
        "@apollo/server-plugin-response-cache": "^5.0.0",
        "@apollo/utils.keyvadapter": "^4.0.1",
        "@aws-sdk/client-secrets-manager": "3.1029.0",
        "@keyv/redis": "^5.1.1",
        "@segment/analytics-node": "^2.1.0",
        "@sentry/node": "~9.47.1",
        "@theorchard/connector-neo4j": "^3.0.3",
        "@theorchard/connector-splitio": "^4.2.0",
        "@theorchard/constants": "^1.5.0",
        "@theorchard/dataloader-zod": "^1.1.0",
        "@theorchard/datasource-neo4j": "^4.0.0",
        "@theorchard/datasource-ows": "^4.1.0",
        "@theorchard/graphql-server": "^5.1.0",
        "@theorchard/jwt-service-handler": "^4.6.7",
        "dataloader": "^2.1.0",
        "dd-trace": "^5.63.3",
        "graphql": "^16.8.1",
        "graphql-scalars": "^1.24.2",
        "keyv": "^5.5.0",
        "lodash": "^4.18.1",
        "query-string": "^7.0.1",
        "zod": "^4.1.0"
    },
    "devDependencies": {
        "@graphql-codegen/add": "^6.0.1",
        "@graphql-codegen/cli": "^6.2.1",
        "@graphql-codegen/typescript": "^5.0.10",
        "@graphql-codegen/typescript-operations": "^5.1.0",
        "@graphql-codegen/typescript-resolvers": "^5.1.8",
        "@theorchard/backend-jwtauth-testing": "^0.4.1",
        "@theorchard/backend-secrets-manager-sdk-v3": "^0.2.0",
        "@theorchard/eslint-config-ts": "^3.1.0",
        "@theorchard/eslint-config-ts-prettier": "^2.3.0",
        "@theorchard/graphql-integration": "^2.1.0",
        "@theorchard/jest-config-node": "^1.0.1",
        "@theorchard/prettier-config": "^1.0.0",
        "@theorchard/utils-environment": "^1.0.10",
        "@types/jest": "^29.5.12",
        "@types/node": "^22.13.14",
        "dotenv-cli": "^7.4.2",
        "eslint": "^9.39.4",
        "graphql-schema-linter": "^3.0.1",
        "husky": "^9.0.11",
        "jest": "^29.7.0",
        "jest-transform-graphql": "^2.1.0",
        "nodemon": "^3.1.12",
        "prettier": "^3.2.5",
        "ts-jest": "^29.1.1",
        "ts-node": "^10.9.1",
        "typescript": "^5.9.2"
    },
    "resolutions": {
        "lru-cache": "^11.1.0",
        "lru-memoizer": "^3.0.0",
        "@types/pg-pool": "^2.0.6",
        "immutable": "^3.8.3",
        "fast-xml-parser": "^5.7.0",
        "handlebars": "^4.7.9",
        "picomatch": "^4.0.4",
        "@apollo/server": "5.5.1",
        "uuid": "14.0.0"
    },
    "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}
