nodemon crashing when running for development
I've been trying to run web-code with the steps given for development but nodemon keeps on crashing.

I'm running on Windows 10. npm version: 5.6.0 node version: 8.11.3
Sorry this definitely hasn't been tested for windows. The start command is a unix command you'll have to rewrite a similar windows shell command.
I fixed this by creating a script in the root directory with
#!/bin/sh rm web-code-3000.lock; npm run build; npm run build-server; npm run start;
and called it watch_script.sh.
Then I changed the watch script to
"watch": "nodemon --ignore static/scripts/bundle.js --ignore lib/web-code-stats.compiled.js --exec \"sh watch_script.sh\"",