-
-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 670 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "parcel",
"description": "Include Bootstrap's source Sass and individual JavaScript plugins with Parcel.",
"version": "0.0.0",
"private": true,
"repository": "twbs/examples",
"license": "MIT",
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"start": "parcel serve src/index.html --public-url / --dist-dir dist",
"build": "parcel build src/index.html --public-url / --dist-dir dist",
"test": "npm run build"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.16.4",
"parcel": "^2.16.4",
"svgo": "^4.0.1"
}
}