-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.79 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
{
"name": "bootcampstrap",
"description": "Dependencies used to compile SASS files.",
"author": "Ashley Trinh <[email protected]>",
"private": true,
"scripts": {
"build": "npm-run-all --parallel css:lint css build:copyIcons build:copyBootstrap",
"css": "npm-run-all css:compile css:prefix",
"css:compile": "sass --style compressed --source-map --embed-sources --no-error-css --load-path=node_modules src/scss/:src/sphinx_bootcampstrap/assets",
"css:prefix": "postcss --replace src/sphinx_bootcampstrap/assets/bootcampstrap.css --use autoprefixer --map",
"css:lint": "stylelint src/scss/",
"test": "npm run-all css:lint css",
"dev:css": "sass --style compressed --source-map --embed-sources --no-error-css --load-path=node_modules src/scss/:examples/kitchen-sink/_build/html/_static",
"dev:server": "browser-sync start --server 'examples/kitchen-sink/_build/html' --files 'examples/kitchen-sink/_build/html/_static'",
"dev": "npm-run-all --parallel watch dev:server",
"watch": "nodemon -e html,scss -x npm run dev:css",
"build:copyIcons": "cp node_modules/bootstrap-icons/bootstrap-icons.svg src/sphinx_bootcampstrap/assets/bootstrap-icons.svg",
"build:copyBootstrap": "cp node_modules/bootstrap/dist/js/bootstrap.min.js src/sphinx_bootcampstrap/assets/bootstrap.min.js"
},
"dependencies": {
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"rfs": "^10.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"browser-sync": "^2.29.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.3.0"
}
}