Skip to content

Commit 87c0a90

Browse files
committed
Remove obsolete node-fetch runtime dependency and bump uuid
1 parent ae6e249 commit 87c0a90

File tree

4 files changed

+48
-43
lines changed

4 files changed

+48
-43
lines changed

src/backend/package-lock.json

+46-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/backend/package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919
"json-immutability-helper": "3.x",
2020
"jwt-simple": "0.5.x",
2121
"mongodb": "3.x",
22-
"node-fetch": "2.x",
2322
"pg": "8.x",
2423
"pwd-hasher": "1.x",
2524
"refacto-entities": "file:../entities",
2625
"shared-reducer-backend": "3.x",
2726
"source-map-support": "0.5.x",
28-
"uuid": "8.x",
27+
"uuid": "9.x",
2928
"websocket-express": "2.x",
3029
"ws": "8.x"
3130
},
@@ -39,8 +38,7 @@
3938
"@neutrinojs/jest": "9.x",
4039
"@neutrinojs/node": "9.x",
4140
"@types/jest": "26.x",
42-
"@types/node-fetch": "2.x",
43-
"@types/uuid": "8.x",
41+
"@types/uuid": "9.x",
4442
"@types/webpack-env": "1.x",
4543
"babel-plugin-transform-dynamic-import": "2.x",
4644
"eslint": "7.x",

src/backend/src/services/GiphyService.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import fetch from 'node-fetch';
21
import { LruCache } from 'collection-storage';
32

43
interface Config {

src/backend/src/services/PasswordCheckService.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import fetch from 'node-fetch';
2-
31
interface Config {
42
baseUrl: string;
53
}

0 commit comments

Comments
 (0)