Skip to content

Commit

Permalink
PROCESS: Updated dependencies to major versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
benel committed Dec 13, 2024
1 parent 8020b4d commit 378c46f
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 28 deletions.
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const proxy = require('express-http-proxy');
const basicAuth = require('basic-auth');
const Ldap = require('./ldap');
const fetch = require('node-fetch');
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
const createHmac = require('crypto').createHmac;
const session = require('express-session');
const bodyParser = require('body-parser');
Expand Down
145 changes: 121 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"express-http-proxy": "^2.1.1",
"express-robots-txt": "^1.0.0",
"express-session": "^1.17.1",
"fs": "0.0.1-security",
"ldapjs": "^2.2.0",
"memoizee": "^0.4.15",
"morgan": "^1.9.1",
"node-fetch": "^2.6.1",
"yaml": "^1.10.2"
"node-fetch": "^3.3.2",
"yaml": "^2.6.1"
},
"devDependencies": {
"frisby": "^2.1.3",
Expand Down

0 comments on commit 378c46f

Please sign in to comment.