Update package.json

This commit is contained in:
Abhishek Sinha 2018-08-04 13:41:29 +05:30 committed by GitHub
parent c3a593a967
commit 36a45aeee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
}