{
  "name": "node-graphql-ts",
  "version": "1.0.0",
  "description": "Node.js (Fastify) + GraphQL Yoga + Prisma + Typescript application",
  "license": "MIT",
  "type": "module",
  "main": "dist/server.js",
  "scripts": {
    "build:watch": "bob-watch -w src -i dist -i src/types.generated.ts -c \"npm run build && npm run dev:script\"",
    "build": "bob-ts -i src",
    "check:format": "prettier --check \"**/*.{ts,graphql,json,yml,yaml}\"",
    "clean:install": "npx rimraf \"**/{node_modules,dist}\" package-lock.json && npm i && npm run generate",
    "dev:script": "cross-env NODE_ENV=development node dist/server.js",
    "dev": "cross-env NODE_ENV=development concurrently -r npm:tsc:watch npm:build:watch",
    "generate": "prisma generate",
    "husky:install": "husky install",
    "lint": "eslint . --ext .ts",
    "prepare": "is-ci || concurrently npm:husky:install npm:build npm:generate",
    "pretty:all": "prettier --write \"**/*.{ts,gql,json,yml,yaml}\"",
    "start": "cross-env NODE_ENV=production node dist/server.js",
    "tsc:watch": "tsc --watch",
    "tsc": "tsc"
  },
  "dependencies": {
    "@envelop/disable-introspection": "^3.6.0",
    "@graphql-tools/load-files": "^6.6.1",
    "@graphql-tools/schema": "^9.0.12",
    "@graphql-yoga/node": "^2.13.13",
    "@prisma/client": "^4.7.1",
    "dotenv": "^16.0.3",
    "fastify": "^4.10.2",
    "graphql": "^16.6.0",
    "graphql-scalars": "^1.20.1",
    "graphql-voyager-fastify-plugin": "^0.1.3",
    "prisma": "^4.7.1",
    "require-env-variable": "^4.0.1"
  },
  "devDependencies": {
    "@graphql-codegen/core": "^2.6.6",
    "@graphql-codegen/plugin-helpers": "^2.7.2",
    "@graphql-codegen/typescript": "^2.8.3",
    "@graphql-codegen/typescript-resolvers": "^2.7.8",
    "@types/node": "^18.11.11",
    "@typescript-eslint/eslint-plugin": "^5.45.1",
    "@typescript-eslint/parser": "^5.45.1",
    "bob-ts": "^4.1.1",
    "bob-watch": "^0.1.2",
    "concurrently": "^7.6.0",
    "cross-env": "^7.0.3",
    "esbuild": "0.16.1",
    "eslint": "^8.29.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^8.0.2",
    "is-ci": "^3.0.1",
    "prettier": "^2.8.0",
    "typescript": "^4.9.3"
  },
  "engines": {
    "node": ">=16"
  }
}
