55 строки
1.7 KiB
JSON
55 строки
1.7 KiB
JSON
{
|
|
"name": "bootstrap-npm-starter",
|
|
"version": "2.1.0",
|
|
"private": true,
|
|
"description": "Demo project for building a Bootstrap powered site via npm.",
|
|
"author": "mdo",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/twbs/bootstrap-npm-starter.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/twbs/bootstrap-npm-starter/issues"
|
|
},
|
|
"homepage": "https://github.com/twbs/bootstrap-npm-starter#readme",
|
|
"scripts": {
|
|
"build": "npm run css",
|
|
"css-compile": "node-sass --include-path node_modules --output-style compressed --source-map true --source-map-contents true --precision 6 scss -o assets/css/",
|
|
"css-lint": "stylelint scss/",
|
|
"css-prefix": "postcss --replace assets/css/starter.css --use autoprefixer --map",
|
|
"css-purge": "purgecss --keyframes --css assets/css/starter.css --content index.html \"node_modules/bootstrap/js/dist/{util,modal}.js\" --output assets/css/",
|
|
"css": "npm-run-all css-compile css-prefix",
|
|
"server": "live-server --port=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.2",
|
|
"bootstrap-icons": "^1.10.3",
|
|
"jquery": "^3.6.4",
|
|
"popper.js": "^1.16.1"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.14",
|
|
"live-server": "^1.2.2",
|
|
"node-sass": "^8.0.0",
|
|
"nodemon": "^2.0.22",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.21",
|
|
"postcss-cli": "^10.1.0",
|
|
"purgecss": "^5.0.0",
|
|
"stylelint": "^14.16.1",
|
|
"stylelint-config-twbs-bootstrap": "^7.0.0"
|
|
}
|
|
}
|