Update package dependencies and enhance development setup

- Added `browser-sync` and `concurrently` as devDependencies for improved development workflow.
- Updated the `dev` script to run the build process and start a live server concurrently.
- Enhanced the about page with a link to the source code repository hosted on a self-managed Gitea instance.
This commit is contained in:
2026-01-25 23:18:32 +01:00
parent 47fc81bc72
commit 6d43b3c844
3 changed files with 1889 additions and 1 deletions

View File

@@ -5,11 +5,15 @@
"type": "module",
"scripts": {
"build": "node build.js",
"dev": "node build.js --watch",
"dev": "concurrently \"node build.js --watch\" \"browser-sync start --server dist --files dist --no-open\"",
"serve": "npx --yes serve dist -p 3000"
},
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^12.0.0"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2"
}
}