Skip to content

Commit

Permalink
Dependencies fix
Browse files Browse the repository at this point in the history
  • Loading branch information
parthvshah committed Apr 1, 2020
1 parent a7dd0ac commit 6a8ef11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"autoprefixer": "^8.6.4",
"axios": "^0.18.0",
"babel-loader": "^8.0.0-beta.4",
"bcrypt": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"browser-locale": "^1.0.3",
Expand Down Expand Up @@ -62,8 +62,8 @@
"request": "^2.87.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.14.0",
"webpack-cli": "^2.0.13",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "^4.1.2",
Expand Down
2 changes: 1 addition & 1 deletion server/models/User.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const mongoose = require('mongoose');
const bcrypt = require('bcrypt');
const bcrypt = require('bcryptjs');

const UserSchema = new mongoose.Schema({
usn: {
Expand Down

0 comments on commit 6a8ef11

Please sign in to comment.