I'm building a Sails app, and suddenly it stopped working. I run sudo node app.js
to start the app and an error is throwed on the terminal:
A hook (`userconfig`) failed to load!
error: Error: Invalid module: [object Object],(...)
I've tried to reinstall all the modules, but no luck on that. I've readed some questions, like here and here but it's not what I am looking for. I'll provide here my package.json file, in case someone need to read it:
{
"name": "myapp",
"private": true,
"version": "0.0.1",
"description": "my app description",
"keywords": [],
"dependencies": {
"bcrypt": "~0.7.6",
"ejs": "~0.8.4",
"grunt": "0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "0.11.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-sails-linker": "~0.9.5",
"grunt-sync": "~0.0.4",
"include-all": "~0.1.3",
"mqtt": "^1.0.8",
"node-uuid": "^1.4.2",
"passport": "^0.2.1",
"passport-local": "^1.0.0",
"rc": "~0.5.0",
"sails": "~0.10.5",
"sails-disk": "~0.10.0",
"sails-mysql": "^0.10.11"
},
"scripts": {
"start": "node app.js",
"debug": "node debug app.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "my repo"
},
"author": "Me",
"license": ""
}
Any help would be awesome... I provided the info I think it's necessary, but I'll provide more if needed.
EDIT: I've seen on more question here but not worked too.