1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-12-29 22:17:51 +02:00
Files
microservices/web/bootstrap/package.json
2021-11-03 14:25:23 +02:00

26 lines
984 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.4.0",
"bootstrap": "^5.1.3",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
"purgecss": "^4.0.3",
"sass": "^1.43.4"
}
}