Updating Dependencies

This commit is contained in:
Amos Haviv
2014-03-27 19:57:58 +02:00
parent acf1df57b8
commit d7d4518595
2 changed files with 5 additions and 5 deletions

View File

@@ -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',

View File

@@ -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": {