I am in a situation where my main react project uses "@material-ui/core": "^1.5.1" , and for a new component that I am trying to build I want to use #@rjsf/material-ui":"3.2.1" which internally expects latest version of "@material-ui/core": "4.12.3". With out disturbing the main project's @material-ui/core version, how can i install both the versions, and force "@rjsf/material-ui":"3.2.1" to refer "@material-ui/core": "4.12.3" ?
I looked here for a possible solution, but "@rjsf/material-ui":"3.2.1", still internally refers to "@material-ui/core": "^1.5.1" and breaks. What is the way out for this problem? Thanks in advance.