diff --git a/config/env/production.js b/config/env/production.js index 698187ee..32f970d6 100644 --- a/config/env/production.js +++ b/config/env/production.js @@ -1,7 +1,7 @@ 'use strict'; module.exports = { - db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI, + db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://localhost/mean', facebook: { clientID: 'APP_ID', clientSecret: 'APP_SECRET', diff --git a/package.json b/package.json index e5836198..d0678cb6 100755 --- a/package.json +++ b/package.json @@ -15,24 +15,24 @@ "scripts": { "start": "grunt", "test": "grunt test", - "postinstall": "bower install" + "postinstall": "bower install --config.interactive=false" }, "dependencies": { - "express": "~3.4.8", + "express": "~3.5.1", "consolidate": "~0.10.0", "swig": "~1.3.2", "mongoose": "~3.8.8", "connect-mongo": "~0.4.0", "connect-flash": "~0.1.1", "passport": "~0.2.0", - "passport-local": "~0.1.6", + "passport-local": "~1.0.0", "passport-facebook": "~1.0.2", "passport-twitter": "~1.0.2", "passport-linkedin": "~0.1.3", "passport-google-oauth": "~0.1.5", "lodash": "~2.4.1", "forever": "~0.10.11", - "bower": "~1.2.8", + "bower": "~1.3.1", "grunt-cli": "~0.1.13" }, "devDependencies": {