kikstart-graphql-client
Version:
Small NodeJS Wrapper around apollo-client that provides easy access to running queries, mutations and subscriptions.
78 lines (77 loc) • 2.24 kB
JSON
{
"name": "kikstart-graphql-client",
"version": "1.5.0",
"description": "Small NodeJS Wrapper around apollo-client that provides easy access to running queries, mutations and subscriptions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"server": "ts-node --watch src ./src/server/message-bus-server.ts",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "true # jest --detectOpenHandles",
"test:watch": "jest --watchAll",
"build": "tsc",
"watch": "tsc -w",
"start": "npm link && nodemon",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/beeman/kikstart-graphql-client.git"
},
"keywords": [
"Hello",
"Greeter"
],
"author": {
"name": "Bram Borggreve",
"email": "borggreve@gmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/beeman/kikstart-graphql-client/issues"
},
"homepage": "https://github.com/beeman/kikstart-graphql-client#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm test"
}
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/jest": "25.2.1",
"@types/node": "12.12.20",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.3",
"graphql": "14.6.0",
"graphql-yoga": "1.18.3",
"husky": "4.2.5",
"jest": "25.3.0",
"nodemon": "2.0.3",
"prettier": "2.0.4",
"semantic-release": "17.0.6",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.2",
"graphql-tag": "^2.10.1",
"node-fetch": "^2.6.0",
"subscriptions-transport-ws": "^0.9.16"
}
}