I would like to use bootstrap 3.3.7 and 4.0.0 in same project. I tried to use the following in my package.json but it's not working:
"dependencies": {
"bootstrap": "^3.3.7, ^4.0.0"
}
I tried the following too and that's not working too:
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-4.0.0": "bootstrap#4.0.0"
}
How can i install that different version of node package?