npm install currently fails due to incompatibilities in transitive dependencies. This is harmless at the moment and can be worked around with npm install --force. However, that command is somewhat dangerous so it would be better to not rely on it.
The problems are that:
The error output is:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: react-scripts@5.0.1
npm ERR! Found: typescript@5.0.4
npm ERR! node_modules/typescript
npm ERR! typescript@"^5.0.4" from the root project
npm ERR! peer typescript@">= 2.7" from fork-ts-checker-webpack-plugin@6.5.2
npm ERR! node_modules/fork-ts-checker-webpack-plugin
npm ERR! fork-ts-checker-webpack-plugin@"^6.5.0" from react-dev-utils@12.0.1
npm ERR! node_modules/react-dev-utils
npm ERR! react-dev-utils@"^12.0.1" from react-scripts@5.0.1
npm ERR! node_modules/react-scripts
npm ERR! react-scripts@"5.0.1" from the root project
npm ERR! 2 more (ts-jest, tsutils)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peerOptional typescript@"^3.2.1 || ^4" from react-scripts@5.0.1
npm ERR! node_modules/react-scripts
npm ERR! react-scripts@"5.0.1" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: typescript@4.9.5
npm ERR! node_modules/typescript
npm ERR! peerOptional typescript@"^3.2.1 || ^4" from react-scripts@5.0.1
npm ERR! node_modules/react-scripts
npm ERR! react-scripts@"5.0.1" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
Once again, the workaround is simply npm install --force.
npm installcurrently fails due to incompatibilities in transitive dependencies. This is harmless at the moment and can be worked around withnpm install --force. However, that command is somewhat dangerous so it would be better to not rely on it.The problems are that:
react-scripts@5.0.1does note declare compatibility with versions oftypescriptabove4(I'm currently on5.0.4). Tracked here: (react-scripts) Support for TypeScript 5.x facebook/create-react-app#13080 . Unfortunately, it seemsreact-scriptsmight be abandoned so the solution might be to move to vite.@xzdarcy/react-timeline-editor@0.1.9usesreact-virtualized@9.22.3, which does not declare compatibility with versions ofreactandreact-domabove16.14.0(I'm currently on18.2.0). Unfortunately it seemsreact-virtualizedis deprecated and unlikely to get updates, so we'd needreact-timeline-editorto switch toreact-window. I have raised this here: Peer dependency conflict with react > 16 (workaround: npm install --force) xzdarcy/react-timeline-editor#33The error output is:
Once again, the workaround is simply
npm install --force.