Skip to content

Commit bee9d72

Browse files
committed
use bcryptjs
1 parent 9b1efb3 commit bee9d72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"homepage": "https://github.com/arpith/feedreader.co#readme",
3030
"dependencies": {
3131
"aws-sdk": "^2.2.33",
32-
"bcrypt": "^0.8.5",
32+
"bcryptjs": "^2.4.3",
3333
"bluebird": "^3.4.6",
3434
"body-parser": "^1.14.2",
3535
"cors": "^2.7.1",

src/sessions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import redis from 'redis';
22
import crypto from 'crypto';
3-
import bcrypt from 'bcrypt';
3+
import bcrypt from 'bcryptjs';
44

55
const redisURL = process.env.REDIS_URL;
66
const redisClient = redis.createClient(redisURL);

src/signup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import crypto from 'crypto';
2-
import bcrypt from 'bcrypt';
2+
import bcrypt from 'bcryptjs';
33
import redis from 'redis';
44
import Promise from 'bluebird';
55

0 commit comments

Comments
 (0)