Cannot find module on grunt when deploying to Heroku

This really puzzles me. Basically I set up a Go app that uses Grunt for the webapp.

I've use https://github.com/ddollar/heroku-buildpack-multi for my buildpack to combine nodejs and go buildpack and I couldn't get the nodejs buildpack to work.

I managed to install grunt and while executing my grunt task it just fails to get the module. Output from Heroku below:

Fetching repository, done.
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 1.23 KiB | 0 bytes/s, done.
Total 10 (delta 6), reused 0 (delta 0)

-----> Fetching custom git buildpack... done
-----> Multipack app detected
=====> Downloading Buildpack: https://github.com/heroku/heroku-buildpack-nodejs.git
=====> Detected Framework: Node.js
-----> Requested node range:  0.10.x
-----> Resolved node version: 0.10.30
-----> Downloading and installing node
-----> Exporting config vars to environment
-----> Installing dependencies
               npm WARN optional dep failed, continuing fsevents@0.2.0

       > blat@0.0.0 postinstall /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d
       > echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy

       postinstall time ls react

       README.md
       addons.js
       dist
       lib
       node_modules
       package.json
       react.js

       AAA

       Loading "Gruntfile.js" tasks...ERROR
       >> Error: Cannot find module 'React'
       Warning: Task "heroku:deploy" not found. Use --force to continue.

       Aborted due to warnings.

       npm ERR! blat@0.0.0 postinstall: `echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy`
       npm ERR! Exit status 3
       npm ERR!
       npm ERR! Failed at the blat@0.0.0 postinstall script.
       npm ERR! This is most likely a problem with the blat package,
       npm ERR! not with npm itself.
       npm ERR! Tell the author that this fails on your system:
       npm ERR!     echo postinstall time ls react; ls ./node_modules/react; echo AAA; ./node_modules/grunt-cli/bin/grunt heroku:deploy
       npm ERR! You can get their info via:
       npm ERR!     npm owner ls blat
       npm ERR! There is likely additional logging output above.
       npm ERR! System Linux 3.8.11-ec2
       npm ERR! command "/tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/vendor/node/bin/node" "/tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/vendor/node/bin/npm" "install" "--userconfig" "/tmp/build_7d4b99cb-602b-42ee-9
a85-8b929a54646d/.npmrc" "--production"
       npm ERR! cwd /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d
       npm ERR! node -v v0.10.30
       npm ERR! npm -v 1.4.21
       npm ERR! code ELIFECYCLE
       npm ERR!
       npm ERR! Additional logging details can be found in:
       npm ERR!     /tmp/build_7d4b99cb-602b-42ee-9a85-8b929a54646d/npm-debug.log
       npm ERR! not ok code 0

Note that I purposely call ls ./node_modules/react to see if it's installed and it is. But for some reason it can't find it on my node file.

My Gruntfile:

module.exports = function(grunt) {
  grunt.loadNpmTasks('grunt-react')
  grunt.loadNpmTasks('grunt-browserify')

  // doing this for testing - fails on heroku
  var react= require('React')

  grunt.initConfig({
    browserify: {
      options: {
        transform: [require('grunt-react').browserify]
      },
      app: {
        src: 'src/app.react.js',
        dest: 'public/index.js'
      }
    },
  })

  grunt.registerTask('heroku:deploy', [
    'browserify:app'
  ])
}

And package.json file:

{
  "name": "blat",
  "version": "0.0.0",
  "description": "",
  "engines": {
    "node": "0.10.x",
    "npm": "1.4.x"
  },
  "dependencies": {
    "director": "^1.2.3",
    "es6-promise": "^1.0.0",
    "grunt": "^0.4.5",
    "grunt-cli": "^0.1.13",
    "grunt-react": "^0.9.0",
    "react": "^0.11.1",
    "react-router": "^0.5.2",
    "superagent": "^0.18.2",
    "superagent-prefix": "0.0.2"
  },
  "devDependencies": {},
  "scripts": {
    "postinstall": "echo postinstall time; ./node_modules/grunt-cli/bin/grunt heroku:deploy"
  }
}

.buildpacks

https://github.com/heroku/heroku-buildpack-nodejs.git
https://github.com/kr/heroku-buildpack-go.git

Heroku config:

BUILDPACK_URL = https://github.com/ddollar/heroku-buildpack-multi.git
NODE_ENV = production

Does anyone know what the problem is? I can't reproduce it locally and it's so frustrating. I've tried https://github.com/mbuchetics/heroku-buildpack-nodejs-grunt buildpack but it gives me the same result..

Ok turns out it was case sensitive issue. Apparently I was using HFS+ case insensitive format which explains why my code was working locally..