added nodemon to help development

build-default-monitor-config-from-definitions
Peeter Normak 2019-07-10 22:41:18 +03:00
parent dfd241d30e
commit 77c1a16cf2
1 changed files with 7 additions and 1 deletions

View File

@ -6,6 +6,7 @@
"main": "camera.js",
"bin": "camera.js",
"scripts": {
"dev": "nodemon --inspect camera.js",
"test": "node camera.js test",
"start": "chmod +x INSTALL/start.sh && INSTALL/start.sh"
},
@ -63,5 +64,10 @@
"socket.io-client": "^2.2.0",
"webdav-fs": "^1.11.0"
},
"devDependencies": {}
"devDependencies": {
"nodemon": "^1.19.1"
},
"nodemonConfig": {
"ignore": ["plugins/*"]
}
}