Added nodemon for auto-reloading

This commit is contained in:
2023-11-26 01:00:16 -05:00
parent 0938eb1b03
commit a57bcb9c2f
3 changed files with 331 additions and 1 deletions

View File

@ -12,6 +12,7 @@
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
@ -24,5 +25,8 @@
"benchmarking"
],
"author": "Gregory Ballantine <gballantine@metaunix.net>",
"license": "BSD-2-Clause"
"license": "BSD-2-Clause",
"devDependencies": {
"nodemon": "^3.0.1"
}
}