Some checks failed
homelab-k8s-services/tictactoe/pipeline/head There was a failure building this commit
- Express app serving vanilla JS 2-player TicTacToe game - Dockerfile (multi-stage node:18-slim) - Jenkinsfile (K8s pod: test → Harbor push → Helm bump → Gitea push) - Helm chart v1.0.0 with HTTPRoute for tictactoe.fireflylab.local Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
305 B
JSON
18 lines
305 B
JSON
{
|
|
"name": "tictactoe",
|
|
"version": "1.0.0",
|
|
"description": "TicTacToe web game",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0",
|
|
"supertest": "^6.3.3"
|
|
}
|
|
}
|