bootstrap-npm-starter/package.json

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

2020-04-16 23:52:23 +03:00
{
"name": "bootstrap-npm-starter",
"version": "1.0.0",
"description": "Demo project for building a Bootstrap powered site via npm.",
"scripts": {
"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-prefix": "postcss --replace assets/css/starter.css --use autoprefixer",
"css": "npm run css-compile && npm run css-prefix",
"server": "serve --listen 3000",
2020-04-16 23:52:23 +03:00
"watch": "nodemon -e html,scss -x \"npm run css\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
2020-04-17 03:58:10 +03:00
"bootstrap",
"sass",
"css",
"javascript",
"starter",
"template"
2020-04-16 23:52:23 +03:00
],
"author": "mdo",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.4.1",
"jquery": "3.4.1",
"popper.js": "1.16.1-lts"
2020-04-16 23:52:23 +03:00
},
"devDependencies": {
"autoprefixer": "^9.7.6",
"node-sass": "^4.13.1",
"nodemon": "^2.0.3",
"postcss-cli": "^7.1.0",
"serve": "^11.3.0"
2020-04-16 23:52:23 +03:00
}
}