Skip to content

Commit 35cab05

Browse files
committedApr 28, 2019
chore: update dependencies
1 parent 75b1294 commit 35cab05

File tree

6 files changed

+415
-370
lines changed

6 files changed

+415
-370
lines changed
 

‎.eslintrc

+3-7
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,9 @@
1919
"objects": "always-multiline",
2020
"imports": "always-multiline",
2121
"exports": "always-multiline",
22-
"functions": "ignore",
23-
}],
24-
"prettier/prettier": ["error", {
25-
"printWidth": 100,
26-
"singleQuote": true,
27-
"trailingComma": "es5",
22+
"functions": "ignore"
2823
}],
24+
"prettier/prettier": ["error"],
2925
"import/prefer-default-export": 0,
3026
"arrow-parens": 0,
3127
"prefer-destructuring": 0,
@@ -43,6 +39,6 @@
4339
"Class": true,
4440
"Iterator": true,
4541
"$Shape": true,
46-
"$Keys": true,
42+
"$Keys": true
4743
}
4844
}

‎.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"printWidth": 100,
6+
"trailingComma": "es5"
7+
}

‎.vscode/launch.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Jest",
9+
"type": "node",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/node_modules/.bin/jest",
12+
"args": ["--runInBand", "--watch"],
13+
"cwd": "${workspaceFolder}",
14+
"console": "integratedTerminal",
15+
"internalConsoleOptions": "neverOpen",
16+
"disableOptimisticBPs": true
17+
},
18+
{
19+
"name": "Jest Current File",
20+
"type": "node",
21+
"request": "launch",
22+
"program": "${workspaceFolder}/node_modules/.bin/jest",
23+
"args": [
24+
"${fileBasenameNoExtension}",
25+
"--config",
26+
"jest.config.js"
27+
],
28+
"console": "integratedTerminal",
29+
"internalConsoleOptions": "neverOpen",
30+
"disableOptimisticBPs": true
31+
}
32+
]
33+
}

‎.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"eslint.validate": [
44
"javascript",
55
],
6-
"javascript.validate.enable": false
6+
"javascript.validate.enable": false,
7+
"javascript.autoClosingTags": false,
78
}

‎package.json

+18-24
Original file line numberDiff line numberDiff line change
@@ -35,51 +35,45 @@
3535
"graphql-compose-pagination": ">=5.0.0"
3636
},
3737
"peerDependencies": {
38-
"graphql-compose": ">=6.2.0",
38+
"graphql-compose": ">=7.0.0",
3939
"mongoose": ">=5.0.0 || >=4.4.0"
4040
},
4141
"devDependencies": {
42-
"@babel/cli": "^7.4.3",
43-
"@babel/core": "^7.4.3",
44-
"@babel/plugin-proposal-class-properties": "^7.4.0",
45-
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
46-
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
47-
"@babel/plugin-transform-runtime": "^7.4.3",
48-
"@babel/preset-env": "^7.4.3",
42+
"@babel/cli": "^7.4.4",
43+
"@babel/core": "^7.4.4",
44+
"@babel/plugin-proposal-class-properties": "^7.4.4",
45+
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
46+
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
47+
"@babel/plugin-transform-runtime": "^7.4.4",
48+
"@babel/preset-env": "^7.4.4",
4949
"@babel/preset-flow": "^7.0.0",
5050
"@types/graphql": "^14.2.0",
5151
"@types/mongoose": "5.2.10",
5252
"babel-core": "^7.0.0-bridge.0",
5353
"babel-eslint": "^10.0.1",
5454
"babel-jest": "^24.7.1",
55-
"cz-conventional-changelog": "^2.1.0",
5655
"eslint": "^5.16.0",
5756
"eslint-config-airbnb-base": "^13.1.0",
58-
"eslint-config-prettier": "^4.1.0",
59-
"eslint-plugin-flowtype": "^3.5.1",
60-
"eslint-plugin-import": "^2.16.0",
57+
"eslint-config-prettier": "^4.2.0",
58+
"eslint-plugin-flowtype": "^3.6.1",
59+
"eslint-plugin-import": "^2.17.2",
6160
"eslint-plugin-prettier": "^3.0.1",
62-
"flow-bin": "^0.96.0",
61+
"flow-bin": "^0.98.0",
6362
"graphql": "14.2.1",
64-
"graphql-compose": "^6.2.0",
63+
"graphql-compose": "^6.3.2",
6564
"graphql-compose-connection": ">=5.0.0",
6665
"graphql-compose-pagination": ">=5.0.0",
6766
"jest": "^24.7.1",
68-
"mongodb-memory-server": "^4.2.2",
69-
"mongoose": "^5.4.22",
70-
"prettier": "^1.16.4",
67+
"mongodb-memory-server": "^5.1.0",
68+
"mongoose": "^5.5.4",
69+
"prettier": "^1.17.0",
7170
"request": "^2.88.0",
7271
"rimraf": "^2.6.3",
7372
"semantic-release": "^15.13.3",
74-
"tslint": "^5.15.0",
73+
"tslint": "^5.16.0",
7574
"tslint-config-prettier": "^1.18.0",
7675
"tslint-plugin-prettier": "^2.0.1",
77-
"typescript": "^3.4.2"
78-
},
79-
"config": {
80-
"commitizen": {
81-
"path": "./node_modules/cz-conventional-changelog"
82-
}
76+
"typescript": "^3.4.5"
8377
},
8478
"scripts": {
8579
"build": "npm run build-lib && npm run build-mjs && npm run build-es && npm run build-node8 && npm run build-ts",

‎yarn.lock

+352-338
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.