簡體   English   中英

npm 無法解析 package.json

[英]npm is failing to parse package.json

我是使用 npm 和節點的新手,我使用 truffle unbox react 創建了一個反應應用程序,它使用 npm init react-app。 我嘗試重新安裝 npm 並清除緩存,但是當我運行 sudo npm start 時,我不斷收到以下錯誤。

npm ERR! code EJSONPARSE
npm ERR! file /home/a/Documents/so/client/package.json
npm ERR! JSON.parse Failed to parse json
npm ERR! JSON.parse Unexpected token { in JSON at position 634 while parsing near '...rsion"
npm ERR! JSON.parse     ]
npm ERR! JSON.parse   }
npm ERR! JSON.parse }
npm ERR! JSON.parse 
npm ERR! JSON.parse {
npm ERR! JSON.parse "name": "mapboxAnd...'
npm ERR! JSON.parse Failed to parse package.json data.
npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/a/.npm/_logs/2020-06-21T17_39_45_819Z-debug.log

我的 package.json 看起來像這樣。

{
  "name": "client",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "16.11.0",
    "react-dom": "16.11.0",
    "react-scripts": "3.2.0",
    "web3": "1.2.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}

據我所知,package.json 只不過是 json。 請幫助我理解這個錯誤。 謝謝你。

您的 package.json 是有效的 JSON 文件,錯誤在其他地方。 你能做到以下幾點:

  1. 在沒有 sudo 的情況下運行 package,例如“npm start”而不是“sudo npm start”,你不應該以 root 身份運行你的包。
  2. 查看日志文件“/home/a/.npm/_logs/2020-06-21T17_39_45_819Z-debug.log”並發布更多詳細信息。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM