Each time I install/build my vue.js project from scratch (e.g. in a new/fresh git clone) I run:
npm install -g @vue/cli
npm install -g @vue/cli-service-global
npm install
Is is possible to move:
@vue/cli
@vue/cli-service-global
into my package.json file so they will get installed along side my other dependencies and I can just run:
npm install
to prepare my project?
Or are both:
@vue/cli
@vue/cli-service-global
"special" in the sense that they are not project specific dependencies but more like system wide tools like npm, node, git etc?