Answer the question
In order to leave comments, you need to log in
How to install dependencies only from dependencies?
How to install dependencies only from the dependencies section? Maybe there is some parameter for npm i?
Or do I need to edit package.json?
Answer the question
In order to leave comments, you need to log in
npm install
installs both dependencies and devDependencies
npm install --production
installs only dependencies
npm install --dev
installs only devDependencies
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question