conventionalcommits.org/themes/conventional-commits/package.json

35 lines
1.2 KiB
JSON
Raw Normal View History

2018-09-13 22:36:30 +02:00
{
"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": "sass ./static/css/scss/style.scss ./static/css/style.css",
2018-09-13 22:36:30 +02:00
"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": "npm run js:bundle -- --mode=development",
2018-09-13 22:36:30 +02:00
"js:watch": "npm run js -- --watch",
"js:bundle": "webpack ./static/js/index.js -o ./static/js --output-filename bundle.js",
"js:build": "npm run js:bundle -- --mode=production",
2018-09-13 22:36:30 +02:00
"build": "npm run css:build && npm run js:build"
},
"author": "",
"license": "MIT",
"dependencies": {
"anchor-js": "4.3.1",
"github-markdown-css": "2.10.0"
2018-09-13 22:36:30 +02:00
},
"devDependencies": {
"autoprefixer": "10.4.12",
"cssnano": "5.1.13",
"sass": "1.55.0",
"postcss": "8.4.18",
"postcss-cli": "10.0.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
2018-09-13 22:36:30 +02:00
}
}