Add NPM-based installation routines

This commit is contained in:
Christian Wolf 2024-01-09 21:32:03 +01:00
parent 25b0477c05
commit 75995e2128
3 changed files with 2574 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/public/
/.hugo_build.lock
/resources/_gen/
/node_modules/

2554
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "hugo-page",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "hugo-extended server --bind 0.0.0.0",
"build": "hugo-extended --minify"
},
"repository": {
"type": "git",
"url": "ssh://git@git.christian-wolf.click:26/tsc-vfl/hugo-page.git"
},
"author": "Christian Wolf",
"license": "ISC",
"devDependencies": {
"hugo-extended": "^0.121.2"
}
}