vuejs应用程序部署到aws的cli。 实例错误以下服务未运行:应用程序

我有一个vuejs应用程序,我试图通过弹性beanstalk cli部署到aws。 我得到错误“以下服务不运行:应用程序”,我不知道这是什么意思。 当我看着我得到的日志

npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the start script 'node build/dev-server.js'. npm ERR! Make sure you have the latest version of node.js and npm installed. npm ERR! If you do, this is most likely a problem with the ntertainus package, npm ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: npm ERR! node build/dev-server.js

这是我第一次尝试使用cli,希望有人能帮助我,我会很感激

这里是我认为失败的package.json文件的一部分

"scripts": { "dev": "npm start", "start": "node build/dev-server.js", "build": "node build/build.js", "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run", "e2e": "node test/e2e/runner.js", "test": "npm run unit && npm run e2e", "lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs" },