Added nodemon for easy reload

This commit is contained in:
Lukas Bachschwell 2017-03-19 13:26:22 +01:00
parent 6233ae0927
commit dfbc37ac37
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,8 @@
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www"
"start": "node ./bin/www",
"mon": "./node_modules/nodemon/bin/nodemon.js"
},
"dependencies": {
"body-parser": "~1.13.2",
@ -14,5 +15,8 @@
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0",
"socketio": "^1.0.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}