Replaced bcrypt-then with updated bcrypt

This commit is contained in:
Jamie Curnow 2018-07-31 11:20:03 +10:00
parent 3119c3f576
commit d030182c0a
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
"dependencies": { "dependencies": {
"ajv": "^6.5.1", "ajv": "^6.5.1",
"batchflow": "^0.4.0", "batchflow": "^0.4.0",
"bcrypt-then": "^1.1.0", "bcrypt": "^3.0.0",
"body-parser": "^1.18.3", "body-parser": "^1.18.3",
"compression": "^1.7.2", "compression": "^1.7.2",
"config": "^1.30.0", "config": "^1.30.0",

View File

@ -3,7 +3,7 @@
'use strict'; 'use strict';
const bcrypt = require('bcrypt-then'); const bcrypt = require('bcrypt');
const db = require('../db'); const db = require('../db');
const Model = require('objection').Model; const Model = require('objection').Model;
const User = require('./user'); const User = require('./user');