I would like to have Heroku build my app after I push it so that I don\'t have to push the build folder up every time I make a change. However heroku only installs the depen
Heroku by default installs only the production dependencies, ignoring the development dependencies under devDependencies.
devDependencies
Setting the npm production variable to false do the trick:
false
heroku config:set NPM_CONFIG_PRODUCTION=false
More info are available at the Heroku Node.js Support page.