2020-01-12 15:33:02 +01:00
|
|
|
{
|
|
|
|
"name": "geekdoc",
|
|
|
|
"version": "1.0.0",
|
2020-06-28 14:47:14 +02:00
|
|
|
"description": "Hugo theme made for documentation",
|
2022-01-06 13:58:10 +01:00
|
|
|
"main": "index.js",
|
2020-01-12 15:33:02 +01:00
|
|
|
"scripts": {
|
2022-01-06 13:58:10 +01:00
|
|
|
"build": "run-s prep:clean prep:make svg build:webpack",
|
|
|
|
"build:webpack": "webpack --mode=production",
|
|
|
|
"build:webpack-devel": "webpack --mode=development",
|
|
|
|
"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'",
|
2022-01-07 16:18:07 +01:00
|
|
|
"svg:font": "svgtofont --sources build/icons/ --output build/fonts/",
|
2022-01-06 13:58:10 +01:00
|
|
|
"prep:clean": "shx rm -rf build/ static/",
|
2022-01-07 16:18:07 +01:00
|
|
|
"prep:clean-all": "shx rm -rf build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/",
|
2022-02-04 12:52:34 +01: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/GeekdocIcons.json exampleSite/data/sprites/geekdoc.json",
|
2022-01-06 13:58:10 +01:00
|
|
|
"lint": "eslint src/js/ --color"
|
2020-01-12 15:33:02 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-09-27 22:21:29 +02:00
|
|
|
"url": "https://github.com/thegeeklab/hugo-geekdoc"
|
2020-01-12 15:33:02 +01:00
|
|
|
},
|
2020-06-28 14:47:14 +02:00
|
|
|
"author": "Robert Kaussow",
|
2020-01-12 15:33:02 +01:00
|
|
|
"license": "MIT",
|
2022-02-04 13:53:49 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=15 <17"
|
|
|
|
},
|
2021-05-05 22:52:57 +02:00
|
|
|
"dependencies": {
|
2022-01-23 11:27:41 +01:00
|
|
|
"@cfworker/json-schema": "1.12.1",
|
2022-02-03 10:30:03 +01:00
|
|
|
"clipboard": "2.0.10",
|
2021-07-31 23:58:58 +02:00
|
|
|
"flexsearch": "0.7.21",
|
2022-01-12 22:36:50 +01:00
|
|
|
"katex": "0.15.2",
|
2022-01-22 14:07:51 +01:00
|
|
|
"mermaid": "8.13.10",
|
2022-01-06 13:58:10 +01:00
|
|
|
"store2": "2.13.1"
|
2021-05-05 22:52:57 +02:00
|
|
|
},
|
2020-01-12 15:33:02 +01:00
|
|
|
"devDependencies": {
|
2022-02-03 01:14:32 +01:00
|
|
|
"@babel/eslint-parser": "7.17.0",
|
2022-01-07 16:18:53 +01:00
|
|
|
"autoprefixer": "10.4.2",
|
2022-01-31 11:54:04 +01:00
|
|
|
"copy-webpack-plugin": "10.2.4",
|
2022-02-02 12:56:11 +01:00
|
|
|
"css-loader": "6.6.0",
|
2022-01-28 23:52:59 +01:00
|
|
|
"eslint": "8.8.0",
|
2022-01-06 13:58:10 +01:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
|
|
"favicons-webpack-plugin": "5.0.2",
|
|
|
|
"npm-run-all": "4.1.5",
|
|
|
|
"postcss-loader": "6.2.1",
|
2021-12-04 16:50:18 +01:00
|
|
|
"prettier": "2.5.1",
|
2021-06-26 12:47:04 +02:00
|
|
|
"prettier-plugin-go-template": "0.0.11",
|
2022-02-02 00:57:21 +01:00
|
|
|
"sass": "1.49.7",
|
2022-01-06 13:58:10 +01:00
|
|
|
"sass-loader": "12.4.0",
|
2022-01-10 04:33:04 +01:00
|
|
|
"shx": "0.3.4",
|
2022-02-03 15:33:52 +01:00
|
|
|
"svg-sprite": "1.5.4",
|
2022-02-07 09:28:22 +01:00
|
|
|
"svgtofont": "3.15.0",
|
2022-01-31 17:48:45 +01:00
|
|
|
"webpack": "5.68.0",
|
2022-01-24 15:11:48 +01:00
|
|
|
"webpack-cli": "4.9.2",
|
2022-01-11 17:29:23 +01:00
|
|
|
"webpack-manifest-plugin": "4.1.1",
|
2022-01-30 23:16:02 +01:00
|
|
|
"webpack-remove-empty-scripts": "0.7.3"
|
2020-01-12 15:33:02 +01:00
|
|
|
},
|
2022-01-10 15:02:12 +01:00
|
|
|
"overrides": {
|
|
|
|
"colors": "1.4.0"
|
|
|
|
},
|
2020-01-12 15:33:02 +01:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 version",
|
|
|
|
"> 5%",
|
|
|
|
"not dead",
|
|
|
|
"Firefox ESR"
|
2022-01-06 13:58:10 +01:00
|
|
|
],
|
|
|
|
"svgtofont": {
|
|
|
|
"fontName": "GeekdocIcons",
|
|
|
|
"css": false,
|
|
|
|
"html": false,
|
|
|
|
"emptyDist": true,
|
|
|
|
"useNameAsUnicode": true,
|
|
|
|
"svgicons2svgfont": {
|
|
|
|
"fontHeight": 1001,
|
|
|
|
"normalize": true,
|
|
|
|
"centerHorizontally": true,
|
|
|
|
"centerVertically": true
|
|
|
|
}
|
|
|
|
}
|
2020-01-12 15:33:02 +01:00
|
|
|
}
|