Files
pdga-rating/package.json
T
Samuel Enocsson 5a5e45b685
Docker Build / docker (push) Failing after 8s
fix(ci): use secrets.GITEA_TOKEN instead of GITHUB_TOKEN
Per Gitea Actions docs, the auto-injected token is exposed as
GITEA_TOKEN, not GITHUB_TOKEN. The latter is GitHub-Actions-specific
and not aliased on Gitea by default.

Also bumps version to 1.2.2 to trigger a fresh tag-build.
2026-05-22 09:13:06 +02:00

25 lines
549 B
JSON

{
"name": "pdga-ratings",
"version": "1.2.2",
"description": "PDGA rating scraper and display",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"ejs": "^4.0.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"pino": "^10.3.1",
"puppeteer": "^24.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.0.1",
"pino-pretty": "^13.1.3"
}
}