Skip to content

Commit 48e55df

Browse files
committed
chore: update dependencies
1 parent 7bdc961 commit 48e55df

File tree

4 files changed

+317
-357
lines changed

4 files changed

+317
-357
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
'^.+\\.(ts|js)$': 'ts-jest',
1414
},
1515
roots: ['<rootDir>'],
16-
testPathIgnorePatterns: ['/node_modules/', '/lib/'],
16+
testPathIgnorePatterns: ['/node_modules/', '/lib/', '/tmp/'],
1717
reporters: [
1818
'default',
1919
[

mongooseConnection.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const opts = {
1010
useNewUrlParser: true,
1111
useCreateIndex: true,
1212
useFindAndModify: false,
13+
useUnifiedTopology: true,
1314
};
1415

1516
mongoose.connect(MONGODB_URI, opts);

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,46 +27,46 @@
2727
},
2828
"homepage": "https://github.com/nodkz/graphql-compose-examples",
2929
"dependencies": {
30-
"@apollo/federation": "0.25.1",
30+
"@apollo/federation": "0.25.2",
3131
"altair-express-middleware": "4.0.6",
32-
"apollo-server-express": "2.25.0",
33-
"aws-sdk": "2.924.0",
32+
"apollo-server-express": "2.25.2",
33+
"aws-sdk": "2.933.0",
3434
"cors": "2.8.5",
3535
"dedent": "0.7.0",
3636
"elasticsearch": "16.7.2",
3737
"express": "4.17.1",
38-
"graphql": "15.5.0",
38+
"graphql": "15.5.1",
3939
"graphql-compose": "9.0.1",
40-
"graphql-compose-aws": "5.2.0",
40+
"graphql-compose-aws": "5.2.1",
4141
"graphql-compose-connection": "8.2.0",
4242
"graphql-compose-elasticsearch": "4.0.10",
43-
"graphql-compose-mongoose": "9.4.1",
43+
"graphql-compose-mongoose": "9.4.2",
4444
"graphql-compose-pagination": "8.2.0",
4545
"graphql-query-complexity": "0.8.1",
4646
"graphql-voyager": "1.0.0-rc.31",
47-
"mongoose": "5.12.13",
48-
"subscriptions-transport-ws": "0.9.18",
47+
"mongoose": "5.12.14",
48+
"subscriptions-transport-ws": "0.9.19",
4949
"ts-node": "^10.0.0",
50-
"typescript": "^4.3.2"
50+
"typescript": "4.3.4"
5151
},
5252
"devDependencies": {
5353
"@types/jest": "26.0.23",
5454
"@types/lodash": "^4.14.168",
55-
"@typescript-eslint/eslint-plugin": "4.22.0",
56-
"@typescript-eslint/parser": "4.22.0",
55+
"@typescript-eslint/eslint-plugin": "4.28.0",
56+
"@typescript-eslint/parser": "4.28.0",
5757
"cz-conventional-changelog": "3.3.0",
58-
"eslint": "7.28.0",
58+
"eslint": "7.29.0",
5959
"eslint-config-airbnb-base": "14.2.1",
6060
"eslint-config-prettier": "8.3.0",
6161
"eslint-plugin-import": "2.23.4",
6262
"eslint-plugin-prettier": "3.4.0",
63-
"jest": "27.0.4",
64-
"jest-junit": "12.0.0",
63+
"jest": "27.0.5",
64+
"jest-junit": "12.2.0",
6565
"mongodb-memory-server": "6.9.6",
6666
"nodemon": "2.0.7",
6767
"prettier": "2.3.1",
6868
"rimraf": "3.0.2",
69-
"ts-jest": "26.5.5",
69+
"ts-jest": "27.0.3",
7070
"ts-node-dev": "^1.1.6"
7171
},
7272
"scripts": {

0 commit comments

Comments
 (0)