When I push my code to OpenShift, it looks like it\'s installing my devDependencies which takes forever. I would really love to set it up so it wil
devDependencies
Create a .npmrc file where the node_modules folder is located.
.npmrc
node_modules
Open it with your text-editor and add this to it:
text-editor
production = true
P.S. no semicolons or any other characters
This will ensure that devDependencies are not installed on the OPENSHIFT server
OPENSHIFT