Skip to content

Commit

Permalink
Add jwt package
Browse files Browse the repository at this point in the history
  • Loading branch information
ahkim3 committed Dec 7, 2023
1 parent a95a894 commit ae6457c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion backend/api/api.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const mssql = require("mssql"); // Azure connector API
const bcrypt = require("bcrypt"); // Password encryption API
const express = require("express"); // Express API
const jwt = require("jwt-decode"); // JWT decoding API

Expand Down
5 changes: 3 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
"start": "node api.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"mssql": "^10.0.1",
"bcrypt": "^5.1.1"
"jwt-decode": "^4.0.0",
"mssql": "^10.0.1"
}
}

0 comments on commit ae6457c

Please sign in to comment.