mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 19:46:01 +01:00
Merge branch 'master' of https://github.com/richiepreece/NodeBB into richiepreece-master
This commit is contained in:
@@ -25,7 +25,6 @@
|
||||
"passport-facebook": "0.1.5",
|
||||
"less-middleware": "0.1.12",
|
||||
"marked": "0.2.8",
|
||||
"bcrypt": "0.7.5",
|
||||
"async": "~0.2.8",
|
||||
"node-imagemagick": "0.1.8",
|
||||
"gravatar": "1.0.6",
|
||||
@@ -47,7 +46,8 @@
|
||||
"semver": "~2.2.1",
|
||||
"string": "~1.7.0",
|
||||
"xregexp": "~2.0.0",
|
||||
"socket.io-wildcard": "~0.1.1"
|
||||
"socket.io-wildcard": "~0.1.1",
|
||||
"bcryptjs": "~0.7.10"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"redis": "0.8.3",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
var user = require('./user'),
|
||||
bcrypt = require('bcrypt'),
|
||||
bcrypt = require('bcryptjs'),
|
||||
db = require('./database'),
|
||||
path = require('path'),
|
||||
winston = require('winston'),
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
var bcrypt = require('bcrypt'),
|
||||
var bcrypt = require('bcryptjs'),
|
||||
async = require('async'),
|
||||
nconf = require('nconf'),
|
||||
winston = require('winston'),
|
||||
|
||||
Reference in New Issue
Block a user