Files
hello-world/package.json
T
host-db 354e691ceb
CI/CD Pipeline / lint-test (push) Failing after 2m5s
CI/CD Pipeline / build-push (push) Has been skipped
CI/CD Pipeline / deploy (push) Has been skipped
feat: initial hello-world app with CI/CD pipeline
2026-06-20 11:57:31 +02:00

15 lines
364 B
JSON

{
"name": "hello-world",
"version": "1.0.0",
"description": "Test app for Gitea CI/CD pipeline",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node -e \"console.log('TESTS PASSED'); process.exit(0)\"",
"lint": "node -e \"console.log('LINT OK'); process.exit(0)\""
},
"dependencies": {
"express": "^4.21.0"
}
}