34 lines
817 B
JSON
34 lines
817 B
JSON
{
|
|
"name": "ui",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node ./bin/www",
|
|
"test": "mocha --recursive test",
|
|
"test:coverage": "nyc npm test",
|
|
"test:unit": "mocha --recursive test/middleware test/models test/routes",
|
|
"test:integration": "mocha --recursive test/integration"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.13.3",
|
|
"cookie-parser": "^1.3.3",
|
|
"ejs": "^2.3.1",
|
|
"express": "^4.13.3",
|
|
"morgan": "^1.6.1",
|
|
"request": "^2.79.0",
|
|
"serve-favicon": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.5.0",
|
|
"debug": "^2.2.0",
|
|
"gulp": "^3.9.0",
|
|
"gulp-nodemon": "^2.0.2",
|
|
"gulp-livereload": "^3.8.0",
|
|
"gulp-plumber": "^1.0.0",
|
|
"mocha": "^3.0.2",
|
|
"nyc": "^10.0.0",
|
|
"supertest": "^2.0.0"
|
|
}
|
|
}
|