Taking the following scripts section from a package.json:
package.json
\"scripts\":{ \"sass:watch\": \"npm run sass -- -w ./src/public/stylesheets -r --s
Use a single ampersand:
"dev:watch" : "npm run sass:watch & npm run livereload"
&& runs tasks in serial; & in parallel.
&&
&