Install Bootstrap 5.0.0. Alpha 2 from package.json

756 Views Asked by At

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?

2

There are 2 best solutions below

4
On

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

"bootstrap": "^5.0.0-alpha2",
0
On

Just install the Bootstrap version you want using npm:

npm install [email protected]