thegeeklab/package.json

37 lines
967 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-remove-empty-scripts": "0.8.1"
},
"overrides": {
"colors": "1.4.0"
}
}