Skip to content

Commit 5f9327a

Browse files
committed
chore: update dependencies
1 parent 7e7e744 commit 5f9327a

File tree

4 files changed

+632
-539
lines changed

4 files changed

+632
-539
lines changed

.eslintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@
2121
"no-plusplus": 0,
2222
"import/no-extraneous-dependencies": 0,
2323
"import/prefer-default-export": 0,
24+
"import/no-cycle": 0,
2425
"prettier/prettier": ["error", {
2526
"printWidth": 100,
2627
"singleQuote": true,
2728
"trailingComma": "es5",
28-
}]
29+
}],
30+
"lines-between-class-members": ["error", "always", { exceptAfterSingleLine: true }],
2931
},
3032
"env": {
3133
"jasmine": true,

flow-typed/npm/express_v4.x.x.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ declare class express$Router extends express$Route {
143143
use(path: string, router: express$Router): this;
144144
handle(req: http$IncomingMessage, res: http$ServerResponse, next: express$NextFunction): void;
145145

146-
// Can't use regular callable signature syntax due to https://github.com/facebook/flow/issues/3084
147-
$call: (req: http$IncomingMessage, res: http$ServerResponse, next?: ?express$NextFunction) => void;
146+
(req: http$IncomingMessage, res: http$ServerResponse, next?: ?express$NextFunction): void;
148147
}
149148

150149
declare class express$Application extends express$Router mixins events$EventEmitter {

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,32 +29,32 @@
2929
"graphql-compose": ">=2.10.1 || >=3.0.0 || >=4.0.0"
3030
},
3131
"devDependencies": {
32-
"aws-sdk": "^2.229.1",
32+
"aws-sdk": "^2.263.1",
3333
"babel-cli": "^6.26.0",
34-
"babel-eslint": "^8.2.3",
35-
"babel-jest": "^22.4.3",
34+
"babel-eslint": "^8.2.5",
35+
"babel-jest": "^23.2.0",
3636
"babel-plugin-transform-flow-strip-types": "^6.22.0",
3737
"babel-plugin-transform-object-rest-spread": "^6.26.0",
3838
"babel-plugin-transform-runtime": "^6.23.0",
39-
"babel-preset-env": "^1.6.1",
39+
"babel-preset-env": "^1.7.0",
4040
"cz-conventional-changelog": "^2.1.0",
41-
"eslint": "^4.19.1",
42-
"eslint-config-airbnb-base": "^12.0.1",
41+
"eslint": "^5.0.1",
42+
"eslint-config-airbnb-base": "^13.0.0",
4343
"eslint-config-prettier": "^2.9.0",
44-
"eslint-plugin-flowtype": "^2.46.3",
45-
"eslint-plugin-import": "^2.11.0",
46-
"eslint-plugin-prettier": "^2.6.0",
44+
"eslint-plugin-flowtype": "^2.49.3",
45+
"eslint-plugin-import": "^2.13.0",
46+
"eslint-plugin-prettier": "^2.6.1",
4747
"express": "^4.16.3",
4848
"express-graphql": "^0.6.12",
49-
"flow-bin": "^0.71.0",
49+
"flow-bin": "^0.75.0",
5050
"graphql": "0.13.2",
51-
"graphql-compose": "^4.3.0",
52-
"jest": "^22.4.3",
53-
"nodemon": "^1.17.3",
54-
"npm-run-all": "^4.1.2",
55-
"prettier": "^1.12.1",
51+
"graphql-compose": "^4.4.1",
52+
"jest": "^23.2.0",
53+
"nodemon": "^1.17.5",
54+
"npm-run-all": "^4.1.3",
55+
"prettier": "^1.13.6",
5656
"rimraf": "^2.6.2",
57-
"semantic-release": "^15.1.7"
57+
"semantic-release": "^15.6.0"
5858
},
5959
"config": {
6060
"commitizen": {

0 commit comments

Comments
 (0)