2020-07-06 18:55:32 +00:00
|
|
|
{
|
|
|
|
"name": "geekblog",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Hugo theme made for blogs",
|
2021-12-29 21:50:13 +00:00
|
|
|
"main": "index.js",
|
2020-07-06 18:55:32 +00:00
|
|
|
"scripts": {
|
2022-01-07 15:18:11 +00:00
|
|
|
"build": "run-s prep:clean prep:make svg build:webpack",
|
|
|
|
"build:webpack": "webpack --mode=production",
|
2021-12-29 21:50:13 +00:00
|
|
|
"build:webpack-devel": "webpack --mode=development",
|
2022-01-07 15:18:11 +00:00
|
|
|
"start": "run-s prep:clean prep:make svg build:webpack-devel ; run-p start:webpack start:hugo",
|
2021-12-29 21:50:13 +00:00
|
|
|
"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'",
|
2022-01-07 15:18:11 +00:00
|
|
|
"svg:font": "svgtofont --sources build/icons/ --output build/fonts/",
|
|
|
|
"prep:clean": "shx rm -rf build/ static/",
|
|
|
|
"prep:clean-all": "shx rm -rf build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/",
|
2022-02-05 14:01:54 +00:00
|
|
|
"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",
|
2021-12-29 21:50:13 +00:00
|
|
|
"lint": "eslint src/js/ --color"
|
2020-07-06 18:55:32 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-09-27 20:14:36 +00:00
|
|
|
"url": "https://github.com/thegeeklab/hugo-geekblog"
|
2020-07-06 18:55:32 +00:00
|
|
|
},
|
|
|
|
"author": "Robert Kaussow",
|
|
|
|
"license": "MIT",
|
2022-02-05 14:02:06 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=15 <17"
|
|
|
|
},
|
2021-05-23 12:50:50 +00:00
|
|
|
"dependencies": {
|
2022-05-06 14:46:27 +00:00
|
|
|
"clipboard": "2.0.11",
|
2022-06-07 08:08:35 +00:00
|
|
|
"katex": "0.16.0",
|
2022-06-29 06:58:16 +00:00
|
|
|
"mermaid": "9.1.3",
|
2022-03-21 08:04:05 +00:00
|
|
|
"store2": "2.13.2"
|
2021-05-23 12:50:50 +00:00
|
|
|
},
|
2020-07-06 18:55:32 +00:00
|
|
|
"devDependencies": {
|
2022-05-30 19:56:28 +00:00
|
|
|
"@babel/eslint-parser": "7.18.2",
|
2022-05-09 02:47:50 +00:00
|
|
|
"autoprefixer": "10.4.7",
|
2022-05-18 13:04:49 +00:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2022-03-14 00:01:24 +00:00
|
|
|
"css-loader": "6.7.1",
|
2022-07-04 00:59:06 +00:00
|
|
|
"eslint": "8.19.0",
|
2022-03-07 01:38:20 +00:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
2022-07-04 00:59:06 +00:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2022-02-22 15:45:10 +00:00
|
|
|
"favicons": "6.2.2",
|
2021-12-29 21:50:13 +00:00
|
|
|
"favicons-webpack-plugin": "5.0.2",
|
|
|
|
"npm-run-all": "4.1.5",
|
2022-05-19 14:02:29 +00:00
|
|
|
"postcss-loader": "7.0.0",
|
2022-06-20 02:40:56 +00:00
|
|
|
"prettier": "2.7.1",
|
2022-05-23 01:04:53 +00:00
|
|
|
"prettier-plugin-go-template": "0.0.13",
|
2022-06-27 02:03:17 +00:00
|
|
|
"sass": "1.53.0",
|
2022-07-04 00:59:06 +00:00
|
|
|
"sass-loader": "13.0.2",
|
2022-01-10 03:14:59 +00:00
|
|
|
"shx": "0.3.4",
|
2022-02-03 16:00:57 +00:00
|
|
|
"svg-sprite": "1.5.4",
|
2022-06-27 02:03:17 +00:00
|
|
|
"svgtofont": "3.17.7",
|
2022-06-06 00:22:57 +00:00
|
|
|
"webpack": "5.73.0",
|
2022-06-13 04:17:06 +00:00
|
|
|
"webpack-cli": "4.10.0",
|
2022-03-08 21:26:40 +00:00
|
|
|
"webpack-manifest-plugin": "5.0.0",
|
2022-06-20 02:40:56 +00:00
|
|
|
"webpack-remove-empty-scripts": "0.8.1"
|
2020-07-06 18:55:32 +00:00
|
|
|
},
|
2022-01-10 14:02:15 +00:00
|
|
|
"overrides": {
|
|
|
|
"colors": "1.4.0"
|
|
|
|
},
|
2020-07-06 18:55:32 +00:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 version",
|
|
|
|
"> 5%",
|
|
|
|
"not dead",
|
|
|
|
"Firefox ESR"
|
2021-12-29 21:50:13 +00:00
|
|
|
],
|
|
|
|
"svgtofont": {
|
|
|
|
"fontName": "GeekblogIcons",
|
|
|
|
"css": false,
|
|
|
|
"html": false,
|
|
|
|
"emptyDist": true,
|
|
|
|
"useNameAsUnicode": true,
|
|
|
|
"svgicons2svgfont": {
|
|
|
|
"fontHeight": 1001,
|
|
|
|
"normalize": true,
|
|
|
|
"centerHorizontally": true,
|
|
|
|
"centerVertically": true
|
|
|
|
}
|
|
|
|
}
|
2020-07-06 18:55:32 +00:00
|
|
|
}
|