hugo-geekblog/package.json

90 lines
2.9 KiB
JSON
Raw Permalink Normal View History

2020-07-06 20:55:32 +02:00
{
"name": "geekblog",
"version": "1.0.0",
"description": "Hugo theme made for blogs",
"main": "index.js",
2020-07-06 20:55:32 +02:00
"scripts": {
"build": "run-s prep:clean prep:make svg build:webpack",
"build:webpack": "webpack --mode=production",
"build:webpack-devel": "webpack --mode=development",
2022-08-31 11:15:25 +02:00
"pack": "tar -zcvf dist/hugo-geekblog.tar.gz -X .tarignore .",
"start": "run-s prep:clean prep:make svg build:webpack-devel ; run-p start:webpack start:hugo",
"start:webpack": "webpack --mode=development --watch",
"start:build": "webpack --mode=development",
"start:hugo": "hugo server -D -F -s exampleSite/",
"svg": "run-s svg:*",
"svg:sprite": "svg-sprite -C svgsprite.config.json 'src/icons/*.svg'",
"svg:font": "svgtofont --sources build/icons/ --output build/fonts/",
"prep:clean": "shx rm -rf build/ static/",
"prep:clean-all": "shx rm -rf VERSION .lighthouseci/ lhci_reports/ build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/ exampleSite/public/ exampleSite/resources/ exampleSite/.hugo_build.lock",
"prep:make": "shx mkdir -p build/icons/ build/fonts/ dist/",
"svg-sprite-list": "run-s prep:make svg ; shx mkdir -p exampleSite/data/sprites/ ; shx cp build/fonts/GeekblogIcons.json exampleSite/data/sprites/geekblog.json",
"lint": "run-p lint:js lint:html",
"lint:js": "eslint src/js/ --color",
"lint:html": "html-validate exampleSite/public"
2020-07-06 20:55:32 +02:00
},
"repository": {
"type": "git",
2020-09-27 22:14:36 +02:00
"url": "https://github.com/thegeeklab/hugo-geekblog"
2020-07-06 20:55:32 +02:00
},
"author": "Robert Kaussow",
"license": "MIT",
"engines": {
"node": ">=18 <=20"
},
"dependencies": {
"clipboard": "2.0.11",
"katex": "0.16.10",
"mermaid": "10.9.0",
"store2": "2.14.3"
},
2020-07-06 20:55:32 +02:00
"devDependencies": {
2024-03-25 01:42:13 +01:00
"@babel/eslint-parser": "7.24.1",
2022-09-12 09:32:02 +02:00
"@eloquent/git-version-webpack-plugin": "5.0.1",
2024-03-25 01:42:13 +01:00
"autoprefixer": "10.4.19",
2024-01-22 03:04:35 +01:00
"copy-webpack-plugin": "12.0.2",
2024-04-15 02:54:08 +02:00
"css-loader": "7.1.1",
2024-02-26 05:08:59 +01:00
"eslint": "8.57.0",
2023-12-04 03:42:58 +01:00
"eslint-config-prettier": "9.1.0",
2024-01-15 02:11:10 +01:00
"eslint-plugin-prettier": "5.1.3",
2024-03-18 05:09:34 +01:00
"favicons": "7.2.0",
"favicons-webpack-plugin": "6.0.1",
2024-04-01 03:08:17 +02:00
"html-validate": "8.18.1",
"npm-run-all2": "6.1.2",
2024-03-04 04:25:17 +01:00
"postcss-loader": "8.1.1",
"prettier": "3.2.5",
2024-04-15 02:54:08 +02:00
"sass": "1.75.0",
"sass-loader": "14.2.0",
"shx": "0.3.4",
2024-04-01 03:08:17 +02:00
"svg-sprite": "2.0.4",
2024-03-11 06:01:21 +01:00
"svgtofont": "4.2.0",
"uuid": "9.0.1",
2024-03-25 01:42:13 +01:00
"webpack": "5.91.0",
2023-06-12 03:58:57 +02:00
"webpack-cli": "5.1.4",
"webpack-manifest-plugin": "5.0.0",
2023-09-04 04:06:31 +02:00
"webpack-remove-empty-scripts": "1.0.4"
2020-07-06 20:55:32 +02:00
},
"overrides": {
"colors": "1.4.0"
},
2020-07-06 20:55:32 +02:00
"browserslist": [
"last 2 version",
"> 5%",
"not dead",
"Firefox ESR"
],
"svgtofont": {
"fontName": "GeekblogIcons",
"css": false,
"html": false,
"emptyDist": true,
"useNameAsUnicode": true,
"svgicons2svgfont": {
"fontHeight": 1001,
"normalize": true,
"centerHorizontally": true,
"centerVertically": true
}
}
2020-07-06 20:55:32 +02:00
}