thegeeklab/package.json
Renovator Bot a02fbd04f3
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): lock file maintenance (#144)
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2022-09-12 10:29:44 +02:00

37 lines
956 B
JSON

{
"name": "the-geeklab",
"version": "1.0.0",
"description": "My personal blog",
"main": "index.js",
"scripts": {
"build": "run-s prep build:*",
"build:webpack": "webpack --mode=production",
"start": "run-s prep build:webpack ; npm run start:hugo",
"start:hugo": "hugo server -D -F",
"prep": "run-s prep:*",
"prep:clean": "shx rm -rf build/ static/",
"prep:make": "shx mkdir -p build/"
},
"repository": {
"type": "git",
"url": "https://github.com/thegeeklab/hugo-geekblog"
},
"author": "Robert Kaussow",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "11.0.0",
"favicons-webpack-plugin": "5.0.2",
"js-yaml": "4.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-go-template": "0.0.13",
"shx": "0.3.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-favicons": "^1.3.8"
},
"overrides": {
"colors": "1.4.0"
}
}