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

26 lines
984 B
JSON
Raw Normal View History

2021-06-01 14:26:02 +03:00
{
"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",
2021-06-02 19:11:36 +03:00
"css-purge": "purgecss --keyframes --css build/style.css --content ref/template.html ref/index.js --output css/",
2021-06-01 14:26:02 +03:00
"css": "npm run css-compile && npm run css-prefix && npm run css-purge",
2021-06-02 12:38:11 +03:00
"css-dev": "sass --load-path node_modules -q scss/style.scss:build/style.css",
2021-06-11 15:44:47 +03:00
"build-server": "sass --load-path node_modules --no-source-map -q scss/style.scss:../../cmd/server/static/build/style.css",
2021-06-01 14:26:02 +03:00
"serve": "http-server ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2021-11-03 14:25:23 +02:00
"autoprefixer": "^10.4.0",
"bootstrap": "^5.1.3",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
2021-06-01 14:26:02 +03:00
"purgecss": "^4.0.3",
2021-11-03 14:25:23 +02:00
"sass": "^1.43.4"
2021-06-01 14:26:02 +03:00
}
}