Skip to content

Commit

Permalink
Update dependencies (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Sep 12, 2023
2 parents c9c145c + 7914e7f commit aaabf64
Show file tree
Hide file tree
Showing 14 changed files with 4,822 additions and 2,887 deletions.
70 changes: 39 additions & 31 deletions examples/express-demo/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 examples/express-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"author": "Sandrino Di Mattia",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"express": "^4.17.0",
"express-jwt": "^8.3.0"
"debug": "^4.3.4",
"express": "^4.18.2",
"express-jwt": "^8.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/express-demo/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ app.use(jwt({
}));

app.get('/me', (req, res) => {
res.json(req.user);
res.json(req.auth);
});

app.use((err, req, res, next) => {
Expand Down
Loading

0 comments on commit aaabf64

Please sign in to comment.