# This will install only dependencies , and not devDependencies ,
# regardless of the value of the NODE_ENV environment variable.
npm install --omit=dev
npm install --only=prod
# Set NODE_ENV=production
# OR
npm install --production
npm install --only=prod