Nodemon not restarting on file change

"scripts": { "start": "npm run prod", "build": "npm-run-all clean transpile", "server": "node ./dist/bin/www", "dev": "npm run lint && NODE_ENV=development nodemon –inspect=notifications:9236 –exec babel-node bin/www", "prod": "NODE_ENV=production npm-run-all build server", "transpile": "babel ./ –out-dir dist", "lint": "eslint '*.js' ", "lint:watch": "watch 'npm run lint' ", "precommit": "npm run lint", "prepush": "npm run lint", "clean": "rimraf dist", … Read more