bootstrap-npm-starter/package.json

52 строки
1.5 KiB
JSON
Исходник Обычный вид История

2020-04-16 23:52:23 +03:00
{
"name": "bootstrap-npm-starter",
2020-10-28 05:27:17 +03:00
"version": "1.2.0",
"private": true,
2020-04-16 23:52:23 +03:00
"description": "Demo project for building a Bootstrap powered site via npm.",
2020-12-29 17:06:42 +03:00
"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",
2020-04-16 23:52:23 +03:00
"scripts": {
2020-04-17 08:49:39 +03:00
"build": "npm run css",
2020-04-16 23:52:23 +03:00
"css-compile": "node-sass --include-path node_modules --output-style compressed --source-map true --source-map-contents true --precision 6 scss -o assets/css/",
2020-04-17 08:46:44 +03:00
"css-prefix": "postcss --replace assets/css/starter.css --use autoprefixer --map",
"css-purge": "purgecss --css assets/css/starter.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",
2020-04-16 23:52:23 +03:00
"watch": "nodemon -e html,scss -x \"npm run css\"",
2020-04-17 08:49:39 +03:00
"test": "npm run css"
2020-04-16 23:52:23 +03:00
},
"keywords": [
2020-04-17 03:58:10 +03:00
"bootstrap",
"sass",
"css",
"javascript",
"starter",
"template"
2020-04-16 23:52:23 +03:00
],
"dependencies": {
"bootstrap": "^4.5.3",
2021-01-07 17:01:06 +03:00
"bootstrap-icons": "^1.2.2",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
2020-04-16 23:52:23 +03:00
},
"devDependencies": {
2021-01-07 17:01:06 +03:00
"autoprefixer": "^10.2.0",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
2021-01-07 17:01:06 +03:00
"postcss": "^8.2.3",
"postcss-cli": "^8.3.1",
"purgecss": "^3.1.3",
"serve": "^11.3.2"
2020-04-16 23:52:23 +03:00
}
}