{
  "name": "graphql-tax-payment",
  "version": "1.0.0",
  "repository": "git@github.com:theorchard/graphql-tax-payment.git",
  "private": true,
  "engines": {
    "node": ">=24"
  },
  "eslintConfig": {
    "extends": "@theorchard/ts"
  },
  "scripts": {
    "build:copy_schema": "mkdir -p ./build/src && cp -R ./src/schema ./build/src",
    "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",
    "generate:schema": "yarn ts-node scripts/buildSchema.ts",
    "generate:types": "yarn graphql-codegen",
    "lint:js": "eslint --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": "NODE_ENV=test jest --verbose --testPathIgnorePatterns src/**/*",
    "test:unit": "NODE_ENV=test jest --testPathIgnorePatterns tests/**/*",
    "test": "yarn lint:js && yarn test:unit"
  },
  "dependencies": {
    "@apollo/server": "^5.5.0",
    "@sentry/node": "^10.27.0",
    "@theorchard/datasource-ows": "^4.0.0",
    "@theorchard/graphql-server": "^5.0.0",
    "@theorchard/jwt-service-handler": "^4.6.5",
    "bignumber.js": "^9.1.2",
    "brace-expansion": "^5.0.6",
    "dataloader": "^2.2.2",
    "graphql": "^16.9.0",
    "lodash": "^4.18.0",
    "lru-cache": "^8.0.5",
    "on-headers": "^1.1.0",
    "tmp": "^0.2.6",
    "zod": "^3.23.6"
  },
  "devDependencies": {
    "@graphql-codegen/add": "^5.0.2",
    "@graphql-codegen/cli": "^5.0.2",
    "@graphql-codegen/near-operation-file-preset": "^3.0.0",
    "@graphql-codegen/typescript": "^4.0.6",
    "@graphql-codegen/typescript-operations": "^4.2.0",
    "@graphql-codegen/typescript-resolvers": "^4.0.6",
    "@stylistic/eslint-plugin": "^5.10.0",
    "@theorchard/eslint-config-ts": "^3.0.0",
    "@types/jest": "^30.0.0",
    "@types/lodash": "^4.17.0",
    "@types/lru-cache": "^5.1.1",
    "@types/node": "^24.0.0",
    "dotenv-cli": "^7.4.1",
    "graphql-request": "^6.1.0",
    "graphql-schema-linter": "^3.0.1",
    "jest": "^29.7.0",
    "jest-transform-graphql": "^2.1.0",
    "nodemon": "^3.1.0",
    "ts-jest": "29.1.2",
    "ts-node": "^10.9.2",
    "tsconfig-paths": "^4.2.0",
    "tscpaths": "^0.0.9",
    "typescript": "^5.4.5"
  },
  "resolutions": {
    "form-data": "^4.0.4",
    "lodash": "^4.18.0",
    "lodash-es": "^4.18.0",
    "braces": "^3.0.3",
    "lru-cache": "^8.0.5",
    "jws": "^3.2.3",
    "js-yaml": "^4.1.1",
    "body-parser": "^2.2.1",
    "qs": "^6.15.2",
    "fast-xml-parser": "^5.7.0",
    "fast-xml-builder": "^1.1.7",
    "minimatch": "^10.2.3",
    "immutable": "^4.3.8",
    "@types/minimatch": "^5.1.2",
    "flatted": "^3.4.2",
    "picomatch": "^4.0.4",
    "path-to-regexp": "^8.4.0",
    "@apollo/federation-internals": "^2.13.2",
    "yaml": "^2.8.3",
    "micromatch": "^4.0.8",
    "uuid": "^11.1.1",
    "tmp": "^0.2.6",
    "brace-expansion": "^5.0.6",
    "ws": "^8.20.1"
  }
}
