removed unused deps

This commit is contained in:
Danny Coates 2018-02-24 18:00:43 -08:00
parent d6c0489fa3
commit 22e836c98a
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
3 changed files with 2 additions and 117 deletions

View file

@ -1,6 +1,6 @@
const express = require('express');
const busboy = require('connect-busboy');
const helmet = require('helmet');
const bodyParser = require('body-parser');
const storage = require('../storage');
const config = require('../config');
const auth = require('../middleware/auth');
@ -55,7 +55,7 @@ module.exports = function(app) {
res.set('Cache-Control', 'no-cache');
next();
});
app.use(bodyParser.json());
app.use(express.json());
app.get('/', language, pages.index);
app.get('/legal', language, pages.legal);
app.get('/jsconfig.js', require('./jsconfig'));