Comment exécuter plus de commandes scripts package.json

* If you are using an UNIX-like environment, just use & as the separator:

"dev": "npm run start-watch & npm run wp-server"

* From windows cmd you can use start:

"dev": "start npm run start-watch && start npm run wp-server"
Every command launched this way starts in its own window.
Volmir