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-08-31 09:15:25 +00:00
|
|
|
"pack": "tar -zcvf dist/hugo-geekblog.tar.gz -X .tarignore .",
|
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": {
|
2022-08-07 20:46:15 +00:00
|
|
|
"node": ">=16.15 <=18"
|
2022-02-05 14:02:06 +00:00
|
|
|
},
|
2021-05-23 12:50:50 +00:00
|
|
|
"dependencies": {
|
2022-05-06 14:46:27 +00:00
|
|
|
"clipboard": "2.0.11",
|
2023-06-24 13:21:12 +00:00
|
|
|
"katex": "0.16.8",
|
2023-07-03 07:09:18 +00:00
|
|
|
"mermaid": "10.2.4",
|
2022-08-01 19:20:59 +00:00
|
|
|
"store2": "2.14.2"
|
2021-05-23 12:50:50 +00:00
|
|
|
},
|
2020-07-06 18:55:32 +00:00
|
|
|
"devDependencies": {
|
2023-07-10 01:33:15 +00:00
|
|
|
"@babel/eslint-parser": "7.22.7",
|
2022-09-12 07:32:02 +00:00
|
|
|
"@eloquent/git-version-webpack-plugin": "5.0.1",
|
2023-03-13 02:53:43 +00:00
|
|
|
"autoprefixer": "10.4.14",
|
2022-05-18 13:04:49 +00:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2023-05-29 00:51:56 +00:00
|
|
|
"css-loader": "6.8.1",
|
2023-07-03 01:10:45 +00:00
|
|
|
"eslint": "8.44.0",
|
2023-04-03 01:53:40 +00:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2022-07-04 00:59:06 +00:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-06-05 00:29:56 +00:00
|
|
|
"favicons": "7.1.3",
|
2021-12-29 21:50:13 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-06-12 01:58:57 +00:00
|
|
|
"postcss-loader": "7.3.3",
|
2023-05-01 02:51:25 +00:00
|
|
|
"prettier": "2.8.8",
|
2023-06-26 02:09:03 +00:00
|
|
|
"sass": "1.63.6",
|
2023-06-12 01:58:57 +00:00
|
|
|
"sass-loader": "13.3.2",
|
2022-01-10 03:14:59 +00:00
|
|
|
"shx": "0.3.4",
|
2022-11-14 02:49:43 +00:00
|
|
|
"svg-sprite": "2.0.2",
|
2023-06-12 01:58:57 +00:00
|
|
|
"svgtofont": "3.25.4",
|
2023-07-03 01:10:45 +00:00
|
|
|
"webpack": "5.88.1",
|
2023-06-12 01:58:57 +00:00
|
|
|
"webpack-cli": "5.1.4",
|
2022-09-13 06:42:55 +00:00
|
|
|
"webpack-favicons": "1.3.8",
|
2022-03-08 21:26:40 +00:00
|
|
|
"webpack-manifest-plugin": "5.0.0",
|
2023-04-21 20:49:52 +00:00
|
|
|
"webpack-remove-empty-scripts": "1.0.3"
|
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
|
|
|
}
|