npm run build:watch
- runs babel to transpile the server from es6 to es5 (watch mode)npm run build:watch:client
- runs webpack to build bundle (watch mode)npm run start:nodemon
- runs nodemon at watch mode
npm run build
- runs babel to transpile the server from es6 to es5npm run build:client
- runs webpack to build bundlenpm run build:prod
- builds both client and servernpm run start
- it callsbuild:prod
and then runs the app