38 lines
988 B
JSON
38 lines
988 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": "del build/ static/",
|
|
"prep:make": "make-dir build/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thegeeklab/hugo-geekblog"
|
|
},
|
|
"author": "Robert Kaussow",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "10.2.1",
|
|
"del-cli": "4.0.1",
|
|
"favicons-webpack-plugin": "5.0.2",
|
|
"js-yaml": "4.1.0",
|
|
"make-dir-cli": "3.0.0",
|
|
"npm-run-all": "4.1.5",
|
|
"prettier": "2.5.1",
|
|
"prettier-plugin-go-template": "0.0.11",
|
|
"webpack": "5.67.0",
|
|
"webpack-cli": "4.9.1",
|
|
"webpack-remove-empty-scripts": "0.7.2"
|
|
},
|
|
"overrides": {
|
|
"colors": "1.4.0"
|
|
}
|
|
}
|