mirror of
https://github.com/conventional-commits/conventionalcommits.org.git
synced 2024-11-15 02:45:15 +01:00
35 lines
1.2 KiB
JSON
35 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": "sass ./static/css/scss/style.scss ./static/css/style.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": "npm run js:bundle -- --mode=development",
|
|
"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",
|
|
"build": "npm run css:build && npm run js:build"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"anchor-js": "4.3.1",
|
|
"github-markdown-css": "2.10.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|