conventionalcommits.org/themes/conventional-commits/package.json
dependabot[bot] 138649f477
build(deps-dev): bump postcss in /themes/conventional-commits
Bumps [postcss](https://github.com/postcss/postcss) from 7.0.2 to 8.2.10.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/7.0.2...8.2.10)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-09 14:32:43 +02:00

34 lines
1.2 KiB
JSON

{
"name": "hugo-conventional-commits-theme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run css & npm run css:watch & npm run js:watch",
"css": "node-sass ./static/css/scss/style.scss -o ./static/css",
"css:watch": "npm run css -- -w",
"css:autoprefixer": "postcss --no-map --use autoprefixer -o ./static/css/style.css ./static/css/style.css",
"css:nano": "postcss --no-map --use cssnano -o ./static/css/style.css ./static/css/style.css",
"css:build": "npm run css && npm run css:autoprefixer && npm run css:nano",
"js": "webpack --mode=development ./static/js/index.js -o ./static/js/bundle.js",
"js:watch": "npm run js -- --watch",
"js:build": "webpack --mode=production ./static/js/index.js -o ./static/js/bundle.js",
"build": "npm run css:build && npm run js:build"
},
"author": "",
"license": "MIT",
"dependencies": {
"anchor-js": "^4.1.1",
"github-markdown-css": "^2.10.0"
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"cssnano": "^4.1.10",
"node-sass": "^4.13.1",
"postcss": "^8.2.10",
"postcss-cli": "^6.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.1.0"
}
}