UNPKG

vue-cli-plugin-apollo

Version:
87 lines (86 loc) 2.65 kB
{ "name": "vue-cli-plugin-apollo", "version": "0.22.2", "description": "vue-cli 3 plugin to add Apollo and GraphQL", "main": "index.js", "types": "./types.d.ts", "scripts": { "dev": "nodemon --exec 'npm run build' --watch graphql-client/src", "build": "yarn build:graphql-client && yarn build:client-addon", "build:graphql-client": "babel graphql-client/src --out-dir graphql-client/dist", "build:client-addon": "cd ./client-addon && yarn build && cd ../", "prepublishOnly": "npm run test && npm run build", "test": "npm run test:eslint && cd ./client-addon npm run lint", "test:eslint": "eslint --ext .js .", "docs:dev": "vuepress dev docs", "docs:build": "vuepress build docs" }, "repository": { "type": "git", "url": "git+https://github.com/Akryum/vue-cli-plugin-apollo.git" }, "keywords": [ "vue", "vue-cli", "apollo", "graphql" ], "author": "Guillaume Chau <guillaume.b.chau@gmail.com>", "license": "ISC", "bugs": { "url": "https://github.com/Akryum/vue-cli-plugin-apollo/issues" }, "homepage": "https://github.com/Akryum/vue-cli-plugin-apollo#readme", "dependencies": { "apollo": "^2.28.2", "apollo-cache-inmemory": "^1.6.6", "apollo-client": "^2.6.10", "apollo-link": "^1.2.14", "apollo-link-context": "^1.0.20", "apollo-link-http": "^1.5.17", "apollo-link-persisted-queries": "^0.2.2", "apollo-link-state": "^0.4.2", "apollo-link-ws": "^1.0.20", "apollo-server-express": "^2.14.2", "apollo-upload-client": "^13.0.0", "apollo-utilities": "^1.3.4", "chalk": "^4.0.0", "deepmerge": "^4.2.2", "dotenv": "^8.2.0", "esm": "^3.2.25", "execa": "^4.0.2", "express": "^4.17.1", "fs-extra": "^9.0.1", "graphql": "^15.1.0", "graphql-subscriptions": "^1.1.0", "graphql-tag": "^2.10.3", "graphql-tools": "^6.0.9", "node-fetch": "^2.6.0", "nodemon": "^2.0.4", "subscriptions-transport-ws": "^0.9.16", "ts-node": "^8.10.2" }, "devDependencies": { "@babel/cli": "^7.4.4", "@babel/core": "^7.4.5", "@babel/preset-env": "^7.4.5", "babel-eslint": "^10.0.1", "eslint": "^7.2.0", "eslint-config-standard": "^14.0.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-node": "^11.0.0", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "eslint-plugin-vue": "^6.0.0", "vuepress": "^0.14.8" }, "peerDependencies": { "@vue/cli-shared-utils": "^3.0.0 || ^4.0.0-0", "typescript": ">=2.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }