Blog/package.json
OCram85 7101a0d577
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/next Pipeline was successful
ci/woodpecker/push/renovate Pipeline was successful
ci/woodpecker/push/master Pipeline was successful
update congo to version 2.4.2 (#36)
#### 📖 Summary

- update congo to version 2.4.2.
- update config keys.
- add npm script for run debug server on arkanaum instance.

#### 📑 Test Plan

> 💡 Select your test plan for the code changes.

- [x] CI pipeline
- [ ] Custom test
- [ ] No test plan

##### Details / Justification

<!-- Add your test details or justification for missing tests here. -->

#### 📚 Additional Notes

<!-- A place for additional detail notes. -->

Co-authored-by: OCram85 <marco.blessing@googlemail.com>
Reviewed-on: #36
2022-12-14 19:20:28 +01:00

38 lines
1.3 KiB
JSON

{
"name": "ocram85.com-blog",
"version": "1.0.0",
"description": "A personal blog about PowerShell, Automation and more.",
"main": "index.js",
"scripts": {
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"clean": "rimraf public/",
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
"start": "npm run server",
"server": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 -D",
"arkanum": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 -D --appendPort=false --baseURL https://arkanum-dev.ocram85.com --port 1313",
"test": "npm run lint:markdown",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"new:post": "exec-bin node_modules/.bin/hugo/hugo new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OCram85/Blog.git"
},
"author": "OCram85",
"license": "MIT",
"bugs": {
"url": "https://github.com/OCram85/Blog/issues"
},
"homepage": "https://github.com/OCram85/Blog#readme",
"devDependencies": {
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.0",
"markdownlint-cli": "^0.32.0",
"rimraf": "^3.0.2"
},
"otherDependencies": {
"hugo": "0.91.1"
}
}