Add graphql peer dependencies

Apollo has a peer dependency on graphql, but several DT packages don't
install it. This fixes that.
This commit is contained in:
Nathan Shively-Sanders
2019-08-26 08:49:04 -07:00
parent eb7e43955d
commit 83eaf368c6
3 changed files with 6 additions and 3 deletions

View File

@@ -1,7 +1,8 @@
{
"private": true,
"dependencies": {
"apollo-link": "^1.0.0",
"apollo-link-http-common": "^0.2.4"
"apollo-link": "^1.2.12",
"apollo-link-http-common": "^0.2.4",
"graphql": "^14.5.3"
}
}

View File

@@ -1,6 +1,7 @@
{
"private": true,
"dependencies": {
"graphql": "^14.5.3",
"graphql-tools": "^4.0.5"
}
}

View File

@@ -1,6 +1,7 @@
{
"private": true,
"dependencies": {
"apollo-client": "^2.0.0"
"apollo-client": "^2.0.0",
"graphql": "^14.5.3"
}
}