Files
YuGiOh-Database-API/package.json
T
Syco 5a1607c106
ci/woodpecker/manual/woodpecker Pipeline was successful
Add Docker, Woodpecker CI/CD, and cleanup
- Add Dockerfile and .dockerignore for containerisation
- Add .woodpecker.yml pipeline (build + deploy to yugioh network on .101)
- Add .gitignore to stop tracking .env; replace with .env.example
- Add npm start script
- Fix index.js: move versionRoutes require before listen, add /health endpoint
- Fix git remote push URLs (were pointing at Dashboard repo)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-15 20:48:35 +02:00

29 lines
674 B
JSON

{
"name": "yugioh-database-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Syco21/YuGiOh-Database-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Syco21/YuGiOh-Database-API/issues"
},
"homepage": "https://github.com/Syco21/YuGiOh-Database-API#readme",
"dependencies": {
"axios": "^1.13.6",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"mysql2": "^3.19.1"
}
}