In config/local.js just set bodyParser to return a placeholder function:
module.exports.express.bodyParser = function(){
return function(req, res, next){ next(); }
}
Setting the property to false won't work because of a bug, so that's the best we got.