Skip to content

Commit

Permalink
fix: move graphql to peerDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
schickling committed Feb 14, 2018
1 parent 3b904aa commit 32ec425
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,20 @@
"test": "tslint src/**/*.ts && npm run test-only"
},
"devDependencies": {
"@types/graphql": "0.11.8",
"@types/node": "9.4.0",
"apollo-link": "1.0.7",
"ava": "0.24.0",
"@types/graphql": "0.12.4",
"@types/node": "9.4.6",
"apollo-link": "1.1.0",
"ava": "0.25.0",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"graphql": "0.13.0",
"typescript": "2.7.1"
},
"dependencies": {
"graphql": "0.12.3",
"graphql-tools": "2.20.2",
"iterall": "1.1.3"
"graphql-tools": "2.21.0",
"iterall": "1.1.4"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
}
}

0 comments on commit 32ec425

Please sign in to comment.