Added nodemon to dev dependencies to automatially reload the app on changes

This commit is contained in:
2025-07-02 16:58:02 -04:00
parent 190ae9f302
commit 3fa86ad23d
4 changed files with 143 additions and 4 deletions

View File

@ -4,7 +4,8 @@
"description": "Self-hosted PC hardware benchmark logging tool",
"main": "index.js",
"scripts": {
"grunt": "grunt"
"grunt": "grunt",
"nodemon": "nodemon"
},
"repository": {
"type": "git",
@ -27,9 +28,10 @@
"devDependencies": {
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"nodemon": "^3.1.10",
"sass": "^1.55.0"
}
}