upgrade some deps, and remove unused qs module

This commit is contained in:
Matteo Pagliazzi
2015-11-11 12:12:44 +01:00
parent 8864508482
commit 249037b80f
3 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
"accepts": "^1.3.0",
"amazon-payments": "0.0.4",
"amplitude": "^2.0.1",
"async": "~0.9.0",
"async": "^1.5.0",
"aws-sdk": "^2.0.25",
"babel": "^5.5.4",
"body-parser": "^1.14.1",
@@ -55,12 +55,12 @@
"loggly": "~1.0.8",
"marked": "^0.3.5",
"merge-stream": "^1.0.0",
"method-override": "~2.2.0",
"moment": "~2.8.3",
"method-override": "^2.3.5",
"moment": "~2.10.6",
"mongoose": "~4.2.3",
"mongoose-id-autoinc": "~2013.7.14-4",
"morgan": "^1.6.1",
"nconf": "~0.6.9",
"nconf": "~0.8.2",
"newrelic": "~1.23.0",
"nib": "~1.0.1",
"nodemailer": "~0.5.2",
@@ -73,7 +73,6 @@
"ps-tree": "^1.0.0",
"push-notify": "^1.1.1",
"q": "^1.4.1",
"qs": "^2.3.2",
"request": "~2.44.0",
"s3-upload-stream": "^1.0.6",
"serve-favicon": "^2.3.0",
@@ -82,7 +81,7 @@
"swagger-node-express": "lefnire/swagger-node-express#habitrpg",
"universal-analytics": "~0.3.2",
"validator": "~4.2.1",
"winston": "~2.0.1"
"winston": "^2.1.0"
},
"private": true,
"engines": {
@@ -121,7 +120,7 @@
"rewire": "^2.3.3",
"rimraf": "^2.4.3",
"run-sequence": "^1.1.4",
"shelljs": "^0.4.0",
"shelljs": "^0.5.3",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"superagent-defaults": "^0.1.13",

View File

@@ -15,7 +15,6 @@ var moment = require('moment');
var logging = require('./../../libs/logging');
var acceptablePUTPaths;
var api = module.exports;
var qs = require('qs');
var firebase = require('../../libs/firebase');
var webhook = require('../../libs/webhook');

View File

@@ -1,3 +1,5 @@
// TODO cleanup all comments when finished API v3
import nconf from 'nconf';
import logging from './libs/logging';
import utils from './libs/utils';