aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-05-02 20:57:57 +0200
committerMateja <mail@matejamaric.com>2021-05-02 20:57:57 +0200
commit4320439bb76922c13917845a2dcb17a84fc493d2 (patch)
treec0a695d656ffd533348028dc76b1a967fa3c38e0 /package.json
parent046c978ecfa3f664d9a0d423ac01075e6be170ab (diff)
downloadnode-playground-4320439bb76922c13917845a2dcb17a84fc493d2.tar.gz
node-playground-4320439bb76922c13917845a2dcb17a84fc493d2.zip
Started using `nodemon`.
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"
}
}