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: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",
|
2019-05-03 17:06:07 +02:00
|
|
|
"github-markdown-css": "^2.10.0",
|
|
|
|
"tar": "^4.4.8"
|
2018-09-13 22:36:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"autoprefixer": "^9.1.3",
|
2019-05-03 17:06:07 +02:00
|
|
|
"cssnano": "^4.1.10",
|
|
|
|
"node-sass": "^4.12.0",
|
2018-09-13 22:36:30 +02:00
|
|
|
"postcss": "^7.0.2",
|
2019-05-03 17:06:07 +02:00
|
|
|
"postcss-cli": "^6.1.2",
|
2018-09-13 22:36:30 +02:00
|
|
|
"webpack": "^4.17.1",
|
|
|
|
"webpack-cli": "^3.1.0"
|
|
|
|
}
|
|
|
|
}
|