如何从我的 node_modules 中删除不需要的 json3 模块?

How do I remove unwanted json3 module from my node_modules?

我刚刚升级了我的 React 应用程序以包含最新的 React Router v5.2 以获得 useHistory 挂钩。一切正常,直到我第二天早上第一次重新启动。现在,当我使用 f5 启动调试会话时,我在名为 json3 的节点模块文件中遇到异常。 (顺便说一句,应用程序在 yarn 启动后在浏览器中运行正常。)异常是“SyntaxError:位置 1 JSON 中的意外标记”。代码是 json3.js:

中的第 186 行
186   parseSupported = !parse('"\t"');

我阅读了 json3 README.md,它说:“JSON 3 已弃用 并且 不再维护。请不要在新项目中使用它,并迁移现有项目以使用原生 JSON.parseJSON.stringify 代替。JSON 3 是用于旧 JavaScript 平台的 JSON polyfill。”我不知道这是如何安装的,我认为我不需要它。它没有在我的 package.json 中列出。它在 node_modules 中处于顶层。我该如何删除它?

为了以防万一,我的 package.json 是这样的:

{
  "name": "blue-duck-pwa",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "enzyme": "3.2.0",
    "enzyme-adapter-react-16": "^1.1.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-plugin-react": "^7.18.3",
    "faker": "^4.1.0",
    "prettier": "2.0.1",
    "react-scripts": "1.1.0",
    "react-test-renderer": "16.0.0",
    "redux-devtools": "^3.4.1",
    "redux-devtools-dock-monitor": "1.1.4",
    "redux-devtools-log-monitor": "2.0.1",
    "redux-logger": "^3.0.6"
  },
  "dependencies": {
    "add": "^2.0.6",
    "base-64": "^0.1.0",
    "bootstrap": "^3.3.7",
    "chart.js": "2.9.3",
    "cheerio": "0.19.x",
    "file-saver": "^1.3.8",
    "history": "^4.6.3",
    "lodash": "^4.17.4",
    "lodash.clonedeep": "^4.5.0",
    "prop-types": "15.6.0",
    "rc-dropdown": "^2.1.0",
    "rc-menu": "^6.2.5",
    "react": "16.13.0",
    "react-auto-suggest": "^0.0.12",
    "react-bootstrap": "0.32.0",
    "react-chartjs-2": "2.6.4",
    "react-dom": "16.13.0",
    "react-notification-system": "0.2.16",
    "react-portal": "^4.0.0",
    "react-redux": "^5.0.6",
    "react-router": "5.2.0",
    "react-router-bootstrap": "0.25.0",
    "react-router-dom": "5.2.0",
    "react-scrollchor": "^4.2.1",
    "react-sizes": "1.0.0",
    "redux": "^3.7.2",
    "redux-promise-middleware": "^5.0.0",
    "redux-thunk": "^2.2.0",
    "uuid": "^3.1.0",
    "xml2js": "0.4.19"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

由于我在升级 node_modules 时不考虑破坏性更改而引起的冲突(我知道这很愚蠢),我只能通过重新开始来解决这个问题。我做了另一个 create-react-app,复制了我的 package.json(带有更正的版本号),运行 yarn install,然后复制了我所有的程序数据:src, .vscode, . eslintrc 等。通过一些简单的修复,这成功了。 node_modules.

中没有例外