aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/package.json b/package.json
index 5320de5..24f644c 100644
--- a/package.json
+++ b/package.json
@@ -4,12 +4,16 @@
"description": "I use this repository to play with Node.js.",
"main": "index.js",
"scripts": {
- "start": "node index.js"
+ "start": "node index.js",
+ "watch": "nodemon index.js"
},
"author": "Mateja Maric",
"license": "GPL-3.0",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^5.3.0"
+ },
+ "devDependencies": {
+ "nodemon": "^2.0.7"
}
}