feat: add dotenv to load .env, ejs for templates, morgan for logging

This commit is contained in:
Nemo D'ACREMONT 2024-10-25 18:52:29 +02:00
parent c40c14a481
commit 2aa20308f6
No known key found for this signature in database
GPG Key ID: 6E5BCE8022FA8276

View File

@ -13,13 +13,18 @@
"license": "ISC", "license": "ISC",
"description": "", "description": "",
"devDependencies": { "devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0", "@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/pg": "^8.11.10", "@types/pg": "^8.11.10",
"globals": "^15.11.0", "globals": "^15.11.0",
"typescript": "^5.6.3" "typescript": "^5.6.3"
}, },
"dependencies": { "dependencies": {
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1", "express": "^4.21.1",
"morgan": "^1.10.0",
"pg": "^8.13.1" "pg": "^8.13.1"
} }
} }