2017-09-26 64 views
0

这是我得到的错误。它说运行npm错误提醒程序。我做到了,但没有任何效果。我的代码有npm的sfcookies。当我早些时候部署它说sfcookies没有下载....类似的东西。所以我尝试在依赖关系下在package.json上键入sfcookies,但那不起作用。现在有一个特定的方式来把这些放在heroku上,我是否错过了一些。 (我用CREATE-反应,应用的初始安装)我尝试在heroku中部署反应应用程序,但失败了

remote: npm ERR! Linux 3.13.0-128-generic 
    remote: npm ERR! argv "/tmp/build_d018c5494b246e95e5185c9297b315ce/.heroku/node/                                 bin/node" "/tmp/build_d018c5494b246e95e5185c9297b315ce/.heroku/node/bin/npm" "ru                                 n" "build" 
    remote: npm ERR! node v6.11.3 
    remote: npm ERR! npm v3.10.10 
    remote: npm ERR! code ELIFECYCLE 
    remote: npm ERR! [email protected] build: `react-scripts build` 
    remote: npm ERR! Exit status 1 
    remote: npm ERR! 
    remote: npm ERR! Failed at the [email protected] build script 'react-scripts bui                                 ld'. 
    remote: npm ERR! Make sure you have the latest version of node.js and npm instal                                 led. 
    remote: npm ERR! If you do, this is most likely a problem with the reminderpro p                                 ackage, 
    remote: npm ERR! not with npm itself. 
    remote: npm ERR! Tell the author that this fails on your system: 
    remote: npm ERR!  react-scripts build 
    remote: npm ERR! You can get information on how to open an issue for this projec                                 t with: 
    remote: npm ERR!  npm bugs reminderpro 
    remote: npm ERR! Or if that isn't available, you can get their info via: 
    remote: npm ERR!  npm owner ls reminderpro 
    remote: npm ERR! There is likely additional logging output above. 
    remote: 
    remote: npm ERR! Please include the following file with any support request: 
    remote: npm ERR!  /tmp/build_d018c5494b246e95e5185c9297b315ce/npm-debug.log 
    remote: !  Push rejected, failed to compile React.js (create-react-app) mult                                 i app. 
    remote: 
    remote: !  Push failed 
    remote: Verifying deploy... 
    remote: 
    remote: !  Push rejected to sheltered-plateau-76958. 

这是我的package.json:

{ 
    "name": "reminderpro", 
    "version": "0.1.0", 
    "private": true, 
    "dependencies": { 
    "moment": "^2.18.1", 
    "react": "^15.6.1", 
    "react-dom": "^15.6.1", 
    "react-redux": "^5.0.6", 
    "react-scripts": "1.0.13", 
    "redux": "^3.7.2" 
    }, 
    "scripts": { 
    "start": "react-scripts start", 
    "build": "react-scripts build", 
    "test": "react-scripts test --env=jsdom", 
    "eject": "react-scripts eject" 
    } 
} 

回答

0

是构建脚本被称为前安装?

您应该显示您的package.json的代码,因为我可以更好地掌握Heroku调用您的脚本的顺序。

+0

好的,我添加了package.json。对不起,我没有得到安装部分? – Ash

+0

尝试将所有包从devDependencies移动到您的依赖项下。 – MisterSnow

+0

ahhhh我没有看到devDependencies在那里? – Ash