|
1 | 1 | {
|
2 | 2 | "name": "@vuex-orm/plugin-graphql",
|
3 |
| - "version": "1.0.0-rc.22", |
| 3 | + "version": "1.0.0-rc.23", |
4 | 4 | "description": "Vuex-ORM persistence plugin to sync the store against a GraphQL API.",
|
5 | 5 | "main": "dist/vuex-orm-graphql.umd.js",
|
6 | 6 | "module": "dist/vuex-orm-graphql.es5.js",
|
|
45 | 45 | "author": "Benjamin Klein",
|
46 | 46 | "license": "MIT",
|
47 | 47 | "engines": {
|
48 |
| - "node":">=6.0.0" |
| 48 | + "node": ">=6.0.0" |
49 | 49 | },
|
50 | 50 | "bugs": {
|
51 | 51 | "url": "https://github.com/vuex-orm/plugin-graphql/issues"
|
|
54 | 54 | "app": "latest"
|
55 | 55 | },
|
56 | 56 | "peerDependencies": {
|
57 |
| - "@vuex-orm/core": "^0.27.0" |
| 57 | + "@vuex-orm/core": "^0.30.0" |
58 | 58 | },
|
59 | 59 | "devDependencies": {
|
60 |
| - "@vuex-orm/core": "^0.27.0", |
| 60 | + "@commitlint/cli": "^7.1.2", |
| 61 | + "@commitlint/config-conventional": "^7.1.2", |
61 | 62 | "@types/graphql": "^0.12.3",
|
62 |
| - "pluralize": "^7.0.0", |
| 63 | + "@types/jest": "^23.3.2", |
| 64 | + "@types/node": "^10.11.0", |
| 65 | + "@types/sinon": "^5.0.1", |
| 66 | + "@vuex-orm/core": "^0.30.0", |
63 | 67 | "apollo-cache-inmemory": "^1.1.7",
|
64 | 68 | "apollo-client": "^2.2.2",
|
65 | 69 | "apollo-link": "^1.2.0",
|
66 | 70 | "apollo-link-http": "^1.3.2",
|
67 | 71 | "apollo-link-schema": "^1.1.0",
|
68 |
| - "graphql": "^0.12.3", |
69 |
| - "graphql-tag": "^2.6.1", |
70 |
| - "graphql-tools": "^3.0.4", |
71 |
| - "@commitlint/cli": "^7.1.2", |
72 |
| - "@commitlint/config-conventional": "^7.1.2", |
73 |
| - "@types/jest": "^23.3.2", |
74 |
| - "@types/node": "^10.11.0", |
| 72 | + "babel-plugin-external-helpers": "^6.22.0", |
| 73 | + "babel-preset-env": "^1.7.0", |
75 | 74 | "colors": "^1.3.2",
|
76 | 75 | "commitizen": "^3.0.0",
|
77 | 76 | "coveralls": "^3.0.2",
|
78 | 77 | "cross-env": "^5.2.0",
|
79 | 78 | "cz-conventional-changelog": "^2.1.0",
|
| 79 | + "graphql": "^0.12.3", |
| 80 | + "graphql-tag": "^2.6.1", |
| 81 | + "graphql-tools": "^3.0.4", |
80 | 82 | "husky": "^1.0.1",
|
81 | 83 | "jest": "^23.6.0",
|
82 | 84 | "jest-config": "^23.6.0",
|
83 | 85 | "lint-staged": "^7.3.0",
|
| 86 | + "lodash.clone": "^4.5.0", |
| 87 | + "lodash.isequal": "^4.5.0", |
| 88 | + "node-fetch": "^2.1.1", |
| 89 | + "normalizr": "^3.2.4", |
| 90 | + "pluralize": "^7.0.0", |
84 | 91 | "prettier": "^1.14.3",
|
85 | 92 | "prompt": "^1.0.0",
|
86 | 93 | "replace-in-file": "^3.4.2",
|
87 | 94 | "rimraf": "^2.6.2",
|
88 | 95 | "rollup": "^0.66.2",
|
| 96 | + "rollup-plugin-babel": "^3.0.7", |
89 | 97 | "rollup-plugin-commonjs": "^9.1.8",
|
90 | 98 | "rollup-plugin-json": "^3.1.0",
|
91 | 99 | "rollup-plugin-node-resolve": "^3.4.0",
|
92 | 100 | "rollup-plugin-sourcemaps": "^0.4.2",
|
93 | 101 | "rollup-plugin-typescript2": "^0.17.0",
|
94 | 102 | "rollup-plugin-uglify": "^3.0.0",
|
95 |
| - "rollup-plugin-babel": "^3.0.7", |
96 |
| - "babel-preset-env": "^1.7.0", |
97 |
| - "babel-plugin-external-helpers": "^6.22.0", |
98 | 103 | "semantic-release": "^15.9.16",
|
| 104 | + "sinon": "^6.0.0", |
99 | 105 | "ts-jest": "^23.10.2",
|
100 | 106 | "ts-node": "^7.0.1",
|
101 | 107 | "tslint": "^5.11.0",
|
102 | 108 | "tslint-config-prettier": "^1.15.0",
|
103 | 109 | "tslint-config-standard": "^8.0.1",
|
104 | 110 | "typescript": "^3.0.3",
|
105 |
| - "vuepress": "^0.8.4", |
106 |
| - "node-fetch": "^2.1.1", |
107 |
| - "lodash.isequal": "^4.5.0", |
108 |
| - "lodash.clone": "^4.5.0", |
109 |
| - "normalizr": "^3.2.4", |
110 | 111 | "vue": "2.5.16",
|
111 |
| - "@types/sinon": "^5.0.1", |
112 |
| - "sinon": "^6.0.0", |
| 112 | + "vuepress": "^0.8.4", |
113 | 113 | "vuex": "^3.0.1"
|
114 | 114 | },
|
115 | 115 | "jest": {
|
|
0 commit comments