Deploy nodejs Error: Cannot find module 'express'

Estou enfrentando o seguinte problema durante o deploy da minha aplicação node

Oct 01 23:14:14
Oct 01 23:14:14 ^
Oct 01 23:14:14 throw err;
Oct 01 23:14:14 internal/modules/cjs/loader.js:638
Oct 01 23:14:11 at Function.Module._load (internal/modules/cjs/loader.js:585:3)
Oct 01 23:14:11 at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
Oct 01 23:14:11 at Module.load (internal/modules/cjs/loader.js:653:32)
Oct 01 23:14:11 at Object.Module._extensions…js (internal/modules/cjs/loader.js:789:10)
Oct 01 23:14:11 at Module._compile (internal/modules/cjs/loader.js:778:30)
Oct 01 23:14:11 at Object. (/usr/src/app/bin/src/app.js:3:17)
Oct 01 23:14:11 at require (internal/modules/cjs/helpers.js:25:18)
Oct 01 23:14:11 at Module.require (internal/modules/cjs/loader.js:692:17)
Oct 01 23:14:11 at Function.Module._load (internal/modules/cjs/loader.js:562:25)
Oct 01 23:14:11 at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
Oct 01 23:14:11 Error: Cannot find module ‘express’
Oct 01 23:14:11

package.json
{
“name”: “node-store”,
“version”: “1.0.0”,
“description”: “”,
“main”: “index.js”,
“scripts”: {
“start”: “node ./bin/server.js”,
“start:dev”: “nodemon ./bin/server.js”
},
“keywords”: [],
“author”: “”,
“license”: “ISC”,
“dependencies”: {
“azure-storage”: “^2.1.0”,
“body-parser”: “^1.19.0”,
“debug”: “^4.1.1”,
“express”: “^4.17.1”,
“firebase-admin”: “^9.1.0”,
“guid”: “0.0.12”,
“http”: “0.0.1-security”,
“jsonwebtoken”: “^7.4.0”,
“md5”: “^2.2.1”,
“moment”: “^2.24.0”,
“mongoose”: “^5.9.6”,
“sendgrid”: “^2.0.0”
},
“devDependencies”: {
“nodemon”: “^2.0.3”
}
}

Olá bom dia @Leonardo_Luque tudo bem?

Você fez o deploy via git remote? Recomendamos utilizar esta opção para node, e também poderia testar subindo a nod_modules junto?
Aguardo seu retorno.