npm 运行 build 不工作:`sh: 1: start: not found`

npm run build not working: `sh: 1: start: not found`

无法构建 nodejs 项目 npm 运行 构建不工作,我也尝试过 nodemon 仍然无法执行。 应用程序 运行宁在 localhost:3000 中很好。 但在构建时它失败了

me@sf:~$ npm run build

> project@1.0.1 build
> start build

sh: 1: start: not found

package.json

    "scripts": {
        "test": "test",
        "start": "node index.js",
        "build": "start build"
    },

删除 "build": "start build" 行解决了我的问题。

    "scripts": {
        "test": "test",
        "start": "node index.js"
    },