{
    "name": "graphql-analytics",
    "version": "1.0.1",
    "private": true,
    "engines": {
        "node": ">=22.17.1"
    },
    "eslintConfig": {
        "extends": "@theorchard/ts",
        "rules": {
            "@typescript-eslint/explicit-module-boundary-types": "off"
        }
    },
    "prettier": "@theorchard/prettier-config",
    "lint-staged": {
        "*.{js,ts,json,md}": [
            "prettier --write"
        ]
    },
    "scripts": {
        "build:copy_schema": "cp -R ./src/schema ./build",
        "build:server": "yarn tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
        "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": "yarn graphql-codegen && yarn prettier --write src/generated/index.ts tests/integration/definitions/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",
        "lint:fix": "yarn lint:js --fix && yarn lint:schema --fix",
        "start": "dotenv -- yarn nodemon --exec ts-node --project ./tsconfig.json -r tsconfig-paths/register ./src/index.ts",
        "test:integration": "NODE_ENV=test jest --verbose --testPathIgnorePatterns src/**/*",
        "test:unit": "NODE_ENV=test jest --testPathIgnorePatterns tests/**/*",
        "test:types": "yarn tsc --project tsconfig.json --noEmit",
        "test": "yarn format:check && yarn lint && yarn test:unit",
        "test:unit:watch": "yarn jest --watchAll",
        "watch": "yarn test:unit:watch"
    },
    "dependencies": {
        "@apollo/utils.keyvadapter": "^2.0.1",
        "@keyv/redis": "^2.5.6",
        "@sentry/node": "9.43.0",
        "@theorchard/connector-ows-playlist": "^2.2.0",
        "@theorchard/connector-splitio": "^4.0.1",
        "@theorchard/dataloader-redis-zod": "^1.1.0",
        "@theorchard/dataloader-zod": "^1.0.0",
        "@theorchard/datasource-ows": "^2.7.4",
        "@theorchard/graphql-server": "4.3.0",
        "@theorchard/utils-dataloader": "^1.0.1",
        "@typescript-eslint/eslint-plugin": "^8",
        "ansi-regex": "6.0.1",
        "axios": "1.12.2",
        "browserslist": "^4.16.5",
        "dotenv": "^16.0.3",
        "follow-redirects": "1.15.6",
        "glob-parent": "^6.0.2",
        "graphql": "^16.10.0",
        "graphql-scalars": "^1.22.2",
        "json-schema": "^0.4.0",
        "json-stable-stringify": "^1.3.0",
        "lodash": "^4.17.21",
        "normalize-url": "^8.0.0",
        "object-path": "^0.11.8",
        "path-parse": "^1.0.7",
        "shelljs": "^0.8.5",
        "tmpl": "^1.0.5",
        "url-parse": "^1.5.10",
        "ws": "^7.4.6",
        "zod": "^3.23.8"
    },
    "devDependencies": {
        "@graphql-codegen/add": "^4.0.1",
        "@graphql-codegen/cli": "^3.2.2",
        "@graphql-codegen/typescript": "^3.0.2",
        "@graphql-codegen/typescript-operations": "^3.0.2",
        "@graphql-codegen/typescript-resolvers": "^3.1.1",
        "@theorchard/eslint-config-ts": "^3.0.0",
        "@theorchard/eslint-config-ts-prettier": "^2.2.3",
        "@theorchard/prettier-config": "^1.0.0",
        "@types/jest": "^29.4.0",
        "@types/json-stable-stringify": "^1.2.0",
        "@types/lodash": "^4.14.191",
        "@types/node": "^22.17.0",
        "@typescript-eslint/parser": "^8",
        "dd-trace": "^5.80.0",
        "dotenv-cli": "^7.0.0",
        "eslint": "^9",
        "eslint-plugin-jest": "^28",
        "eslint-plugin-n": "^17",
        "eslint-plugin-promise": "^7",
        "graphql-request": "^6.1.0",
        "graphql-schema-linter": "^3.0.1",
        "jest": "^29.4.3",
        "jest-junit": "^15.0.0",
        "jest-simple-dot-reporter": "^1.0.5",
        "jest-transform-graphql": "2.1.0",
        "nodemon": "^3.1.10",
        "prettier": "^2.8.4",
        "ts-jest": "^29.0.5",
        "ts-node": "^10.9.1",
        "tsc-alias": "^1.8.16",
        "tsconfig-paths": "^4.2.0",
        "typescript": "^4.9.5"
    },
    "resolutions": {
        "lodash": "^4.17.21",
        "ws": "^7.4.6",
        "browserslist": "^4.16.5",
        "hosted-git-info": "^2.8.9",
        "url-parse": "^1.5.10",
        "minimatch": "^9.0.0"
    },
    "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}
