diff --git a/CHANGELOG.md b/CHANGELOG.md index 49f75737ad3..6aaa1d92c2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ### vNEXT +* Changed GraphQL typings requirment from peer to standard ([@DxCx](https://github.com/DxCx) in [#129](https://github.com/apollostack/graphql-tools/pull/129)) * Change the missing resolve function validator to show a warning instead of an error ([@nicolaslopezj](https://github.com/nicolaslopezj) in [#134](https://github.com/apollostack/graphql-tools/pull/134)) diff --git a/package.json b/package.json index fd16678d214..33a9eb2526f 100644 --- a/package.json +++ b/package.json @@ -33,11 +33,11 @@ "homepage": "https://github.com/apollostack/apollo-proxy#readme", "dependencies": { "lodash.uniq": "^4.3.0", - "node-uuid": "^1.4.7" + "node-uuid": "^1.4.7", + "graphql-typings": "^0.0.1-beta-2" }, "peerDependencies": { - "graphql": "^0.5.0 || ^0.6.0 || ^0.7.0", - "graphql-typings": "^0.0.1-beta-2" + "graphql": "^0.5.0 || ^0.6.0 || ^0.7.0" }, "devDependencies": { "babel-cli": "^6.6.5",