From 36a45aeee8035c4f92d9b0228ea594d7b5fb7283 Mon Sep 17 00:00:00 2001 From: Abhishek Sinha Date: Sat, 4 Aug 2018 13:41:29 +0530 Subject: [PATCH] Update package.json --- package.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9d2819f..2d32d37 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,17 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "browserify public/js/main.js -o public/js/bundle.js", - "watch": "watchify public/js/main.js -o public/js/bundle.js" + "watch": "watchify public/js/main.js -o public/js/bundle.js", + "prestart": "npm run build", + "start": "nodemon --ignore public/js/bundle.js index.js", + "poststart":"npm run watch" }, "author": "Abhishek Sinha", "license": "ISC", + "repository" : + { "type" : "git", + "url" : "https://github.com/avishkarabhishek786/flo-greeting-cards.git" + }, "dependencies": { "axios": "^0.18.0", "bitcoin-core": "^2.0.0", @@ -31,7 +38,9 @@ "node-fetch": "^2.2.0", "popper.js": "^1.14.3", "qrcode": "^1.2.2", - "watchify": "^3.11.0", - "webshot": "^0.18.0" + "watchify": "^3.11.0" + }, + "devDependencies": { + "nodemon": "^1.18.3" } }