feat: initialize project with core configuration files and Docker setup

This commit is contained in:
ɧσℓσ
2025-09-29 21:44:59 +02:00
commit f6a3c80d96
22 changed files with 7545 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "gitlab-issue-discord-bot",
"version": "1.0.0",
"description": "Bot Discord pour synchroniser les issue boards GitLab avec Discord",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"keywords": ["discord", "gitlab", "kanban", "bot", "issue-board"],
"author": "Holo795",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"nodemon": "^3.0.2",
"eslint": "^8.56.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}