{
  "name": "graphql-notion",
  "version": "1.0.0",
  "private": true,
  "engines": {
    "node": ">=22.14"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/theorchard/graphql-notion.git"
  },
  "scripts": {
    "build:server": "yarn tsc -p ./tsconfig.build.json",
    "build:schema": "mkdir -p build/src && cp -R src/schema build/src/",
    "build": "yarn clean && yarn build:server && yarn build:schema",
    "clean": "rm -rf build && mkdir build",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "generate:types": "yarn graphql-codegen",
    "lint:js": "eslint --cache --cache-location .cache/.eslintcache src/ tests/",
    "lint:gql": "eslint --no-eslintrc -c .eslintrc.graphql.js src/schema/ tests/",
    "lint": "yarn lint:js && yarn lint:gql",
    "start": "yarn nodemon --exec ts-node --project ./tsconfig.json -r dotenv/config ./src/index.ts",
    "test:integration": "jest --testPathIgnorePatterns src/**/*",
    "test:unit": "jest src/",
    "test": "yarn test:unit && yarn test:integration"
  },
  "eslintConfig": {
    "extends": [
      "@theorchard/ts-prettier"
    ]
  },
  "dependencies": {
    "@apollo/server": "^4.11.0",
    "@notionhq/client": "^3.1.3",
    "@sentry/node": "^7.46.0",
    "@theorchard/graphql-server": "^3.5.4",
    "graphql-scalars": "^1.21.3"
  },
  "devDependencies": {
    "@graphql-codegen/add": "^4.0.1",
    "@graphql-codegen/cli": "^3.0.0",
    "@graphql-codegen/near-operation-file-preset": "^2.5.0",
    "@graphql-codegen/typed-document-node": "^3.0.2",
    "@graphql-codegen/typescript": "^3.0.0",
    "@graphql-codegen/typescript-operations": "^3.0.0",
    "@graphql-codegen/typescript-resolvers": "^3.0.0",
    "@graphql-eslint/eslint-plugin": "^3.18.0",
    "@theorchard/eslint-config-ts-prettier": "^2.1.1",
    "@types/jest": "^29.2.2",
    "@types/node": "^18.15.10",
    "graphql": "^16.8.1",
    "graphql-schema-linter": "^3.0.1",
    "jest": "^29.3.1",
    "nodemon": "^2.0.22",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "typescript": "~5.0.3"
  }
}
