1
0
mirror of https://github.com/ebosas/microservices.git synced 2026-04-24 19:03:51 +02:00
Files
microservices/web/bootstrap/package.json
T
2021-06-11 15:44:47 +03:00

26 lines
983 B
JSON

{
"name": "microservices_bootstrap",
"version": "1.0.0",
"description": "",
"scripts": {
"css-compile": "sass --load-path node_modules --style compressed --no-source-map -q scss/style.scss:build/style.css",
"css-prefix": "postcss --replace build/style.css --use autoprefixer --no-map",
"css-purge": "purgecss --keyframes --css build/style.css --content ref/template.html ref/index.js --output css/",
"css": "npm run css-compile && npm run css-prefix && npm run css-purge",
"css-dev": "sass --load-path node_modules -q scss/style.scss:build/style.css",
"build-server": "sass --load-path node_modules --no-source-map -q scss/style.scss:../../cmd/server/static/build/style.css",
"serve": "http-server ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.2.5",
"bootstrap": "^5.0.1",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"purgecss": "^4.0.3",
"sass": "^1.34.0"
}
}