diff --git a/README.md b/README.md index fae5c90..896fd18 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ 1. Clone directory into local folder 2. Go into the cloned folder and enter `npm install` -3. Install nodemon and gulp globally by entering `npm install -g nodemon gulp` +3. Install gulp globally by entering `npm install -g gulp` ## Run diff --git a/package.json b/package.json index 720d2d0..4cf4050 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,9 @@ "scripts": { "build": "gulp", "start": "node ./bin/www", - "watch": "nodemon --watch ./ --watch views/ --watch controllers/ --watch build/ --ext js,hbs ./bin/www", - "debug": "nodemon --inspect=0.0.0.0:9311 --watch controllers/ --watch helpers/ --watch views/ --ext js,hbs ./bin/www", + "watch": "node --watch ./bin/www", + "debug": "node --inspect=0.0.0.0:9311 --watch ./bin/www", "lint": "eslint ./bin ./controllers ./helpers ./test ./api.js ./app.js --ext .js --fix", - "startd": "echo 'Do you mean 'npm run watch'?'", "test": "mocha 'test/**/*.js' --recursive --timeout 60000 --exit" }, "engines": {