-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "bootstrap-theming",
"version": "1.0.0",
"private": true,
"description": "Project for building a Bootstrap powered site via npm.",
"license": "MIT",
"homepage": "https://github.com/twbs/bootstrap-npm-starter#readme",
"scripts": {
"build": "npm run css",
"css-compile": "sass --load-path node_modules --style expanded scss:assets/css/",
"css-lint": "stylelint scss/",
"css-prefix": "postcss --replace assets/css/custom.css --use autoprefixer --map",
"css-purge": "purgecss --keyframes --css assets/css/custom.css --content index.html --output assets/css/",
"css": "npm-run-all css-compile css-prefix",
"server": "serve --listen 3000",
"start": "npm-run-all --parallel watch server",
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "npm run css-lint && npm run css"
},
"keywords": [
"bootstrap",
"sass",
"css",
"javascript",
"starter",
"template"
],
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap-icons": "^1.4.0",
"jquery": "^3.6.0",
"popper.js": "^1.16.1"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"purgecss": "^4.0.2",
"sass": "^1.53.0",
"serve": "^11.3.2",
"stylelint": "^13.12.0",
"stylelint-config-twbs-bootstrap": "^2.1.0"
}
}