Sails 初始化错误

Sails initialization error

我正在构建一个 Sails 应用程序,但它突然停止工作了。我 运行 sudo node app.js 启动应用程序并在终端上抛出错误:

A hook (`userconfig`) failed to load!
error: Error: Invalid module: [object Object],(...)

我尝试重新安装所有模块,但没有成功。 我已经阅读了一些问题,例如 here and here 但这不是我要找的。我会在这里提供我的 package.json 文件,以防有人需要阅读它:

{
    "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": ""
}

任何帮助都会很棒...我提供了我认为必要的信息,但如果需要我会提供更多。

编辑: 我看到了更多问题 here 但也没有用。

您的应用程序由于某种原因无法加载配置文件。您可能在其中一个配置中存在语法错误、配置数据冲突或更改了 .sailsrc 中配置的路径。

配置目录中不应包含 .json 文件。看起来 sails 从它加载每个文件并尝试将其识别为配置模块