我从一个 repo 中得到了这个项目,使用
git 克隆
然后cd到正确的目录
接下来我去安装项目,出现这个错误
这里是 JSON 文件
{
"name": "tryb-prints",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"atomize": "^1.0.26",
"bootstrap": "^4.5.3",
"firebase": "^8.0.2",
"materialize-css": "^1.0.0-rc.2",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.4",
"react-transition-group": "^4.4.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"shopify-buy": "^2.11.0",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"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"
]
}
}
任何帮助都将付出代价
答案 0 :(得分:12)
尝试使用 npm install --legacy-peer-deps
答案 1 :(得分:1)
因为你的一些内部依赖迫使反应 ^16.8 你不能使用版本 17+。
降级到低于主要版本 17 的任何内容,一切顺利