mirror of
https://github.com/arthur-pbty/LazyBot.git
synced 2026-06-03 15:07:29 +02:00
1fcb1c2b88
- Updated package dependencies to replace SQLite with PostgreSQL. - Modified privacy policy to reflect the change in database technology. - Adjusted session management in server.js to use connect-pg-simple. - Enhanced docker-compose.yml to include PostgreSQL service with health checks. - Added Dockerfile for multi-stage builds for development and production environments. - Introduced .dockerignore to exclude unnecessary files from the Docker context.
37 lines
866 B
JSON
37 lines
866 B
JSON
{
|
|
"name": "lazybot",
|
|
"version": "1.0.0",
|
|
"description": "Un bot Discord configurable via un site web.",
|
|
"keywords": [
|
|
"Discord",
|
|
"Bot",
|
|
"WebApp"
|
|
],
|
|
"homepage": "https://github.com/arthur-pbty/LazyBot#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/arthur-pbty/LazyBot/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/arthur-pbty/LazyBot.git"
|
|
},
|
|
"license": "ISC",
|
|
"author": "Arthur Pbty",
|
|
"type": "commonjs",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"dependencies": {
|
|
"canvas": "^3.2.1",
|
|
"chartjs-node-canvas": "^4.1.6",
|
|
"connect-pg-simple": "^10.0.0",
|
|
"cross-fetch": "^4.1.0",
|
|
"discord.js": "^14.25.1",
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.2.1",
|
|
"express-session": "^1.18.2",
|
|
"pg": "^8.16.3"
|
|
}
|
|
}
|