"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js"
},
as mentioned in the question, I always thought that the above commands were invoked in this way
npm run dev
npm run build
when learning the webpack-dev-server chapter of webpack, the official tutorial uses npm start, instead of npm run start,. When to add run, and when not to add run?