I'm scaffolding the vue app frontend using webpack:
vue init webpack frontend
cd frontend
For this app, I need - among others - axios, hence:
npm install axios
Now I push the code to the repo and clone the repo from another computer.
My question is:
How do I make sure all the required npm libraries are there on the new computer so that npm run build succeeds?