{
  "name": "graphqlgen",
  "version": "0.6.0-rc9",
  "description": "Generate resolver types based on a GraphQL Schema",
  "main": "dist/index.js",
  "files": [
    "dist",
    "README.md"
  ],
  "bin": {
    "graphql-resolver-codegen": "dist/index.js",
    "graphqlgen": "dist/index.js",
    "gg": "dist/index.js"
  },
  "scripts": {
    "clean": "rm -rf tests/**/tmp && rm -rf tests/**/generated && rm -rf dist",
    "prepublishOnly": "rm -rf example/node_modules && yarn checks && yarn test && yarn build",
    "postpublish": "yarn clean",
    "benchmarks": "ts-node benchmarks",
    "build": "yarn clean && tsc --declaration",
    "watch": "tsc --watch",
    "check:types": "yarn tsc --noEmit",
    "check:lint": "tslint --project tsconfig.json {src,test}/**/*.ts",
    "checks": "yarn check:types && yarn check:lint",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:ci": "yarn check:lint && jest --maxWorkers 4",
    "gen": "ts-node --files src/index.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prisma/graphqlgen.git"
  },
  "author": "Prisma",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/prisma/graphqlgen/issues"
  },
  "homepage": "https://github.com/prisma/graphqlgen#readme",
  "dependencies": {
    "@babel/parser": "^7.1.5",
    "@babel/types": "7.3.0",
    "ajv": "^6.5.5",
    "camelcase": "5.0.0",
    "chalk": "2.4.2",
    "glob": "^7.1.3",
    "graphql": "^0.13.0 || ^14.0.0",
    "graphql-import": "0.7.1",
    "graphqlgen-json-schema": "0.6.0-rc8",
    "js-yaml": "3.12.1",
    "mkdirp": "0.5.1",
    "prettier": "1.16.4",
    "reason": "3.3.4",
    "rimraf": "2.6.3",
    "ts-node": "8.0.2",
    "typescript": "3.3.3",
    "yargs": "12.0.5"
  },
  "devDependencies": {
    "@types/benchmark": "1.0.31",
    "@types/camelcase": "4.1.0",
    "@types/graphql": "14.0.5",
    "@types/jest": "24.0.5",
    "@types/js-yaml": "3.12.0",
    "@types/mkdirp": "0.5.2",
    "@types/node": "10.12.25",
    "@types/prettier": "1.15.2",
    "@types/rimraf": "2.0.2",
    "@types/yargs": "12.0.8",
    "benchmark": "2.1.4",
    "flow-bin": "0.86.0",
    "graphql-tag": "2.10.1",
    "jest": "23.6.0",
    "ts-jest": "23.10.5",
    "tslint": "5.12.1"
  }
}
