1

Use nodemon for running server

This commit is contained in:
Alex Yatskov 2014-10-02 15:45:46 +09:00
parent bd467aac6d
commit e830d008d3
2 changed files with 4 additions and 1 deletions

View File

@ -36,7 +36,7 @@ var paths = {
};
gulp.task('lint', function() {
return gulp.src('scripts/*.js')
gulp.src('scripts/*.js')
.pipe(jshint())
.pipe(jshint.reporter('default'));
});

View File

@ -11,6 +11,9 @@
"license": "BSD-2-Clause",
"dependencies": {
"express": "~4.5.1",
"gulp": "^3.8.8",
"gulp-jshint": "^1.8.5",
"gulp-nodemon": "^1.0.4",
"mysql": "^2.5.0",
"underscore": "^1.6.0"
}