0

Here's what I have in my current package.json

{
    "devDependencies": {
        "axios": "^0.19",
        "bootstrap": "^4.5.0",
        "cross-env": "^7.0",
        "laravel-mix": "^5.0.1",
        "lodash": "^4.17.19",
        "resolve-url-loader": "^3.1.0"
    }
}

But I would like to run the latest Bootstrap version, which is 5.0.0. Alpha 2. How do I indicate that according to package.json syntax?

GTS Joe
  • 3,612
  • 12
  • 52
  • 94

2 Answers2

0

EDIT: to specify bootstrap 5.0.0 Alpha 2 in your package.json do this

"bootstrap": "^5.0.0-alpha2",
Aib Syed
  • 3,118
  • 2
  • 19
  • 30
0

Just install the Bootstrap version you want using npm:

npm install bootstrap@5.0.0-alpha2
Karl Hill
  • 12,937
  • 5
  • 58
  • 95