Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nodkz committed Nov 1, 2019
1 parent e5dc33b commit 8a72026
Show file tree
Hide file tree
Showing 4 changed files with 1,293 additions and 959 deletions.
9 changes: 4 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"prettier.eslintIntegration": true,
"eslint.validate": [
"javascript",
],
"javascript.validate.enable": false
"eslint.validate": ["javascript"],
"javascript.validate.enable": false,
"javascript.autoClosingTags": false,
"eslint.autoFixOnSave": true
}
6 changes: 3 additions & 3 deletions examples/elastic50/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ const expressPort = process.env.port || process.env.PORT || 9201;
const server = express();
server.use(
'/',
graphqlHTTP({
(graphqlHTTP({
schema: (schema: any),
graphiql: true,
formatError: error => ({
customFormatErrorFn: error => ({
message: error.message,
stack: error.stack.split('\n'),
}),
})
}): any)
);

server.listen(expressPort, () => {
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,37 +31,37 @@
"graphql-compose": "^7.0.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"aws-sdk": "^2.467.0",
"aws-sdk": "^2.561.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"elasticsearch": "^16.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"elasticsearch": "^16.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"flow-bin": "^0.100.0",
"graphql": "^14.3.1",
"graphql-compose": "^7.0.4",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"express-graphql": "^0.9.0",
"flow-bin": "0.110.0",
"graphql": "^14.5.8",
"graphql-compose": "^7.4.2",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.12"
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.28"
},
"scripts": {
"build": "npm run build-cjs && npm run build-mjs",
Expand Down
Loading

0 comments on commit 8a72026

Please sign in to comment.