2024-03-29 20:08:34 -04:00
|
|
|
{
|
|
|
|
|
"name": "ets-pfe004-evaluetonsavoir-backend",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "",
|
|
|
|
|
"main": "app.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "webpack --config webpack.config.js",
|
|
|
|
|
"start": "node app.js",
|
2024-10-28 12:53:13 -04:00
|
|
|
"dev": "cross-env NODE_ENV=development nodemon app.js",
|
2025-02-21 14:48:21 -05:00
|
|
|
"test": "jest",
|
|
|
|
|
"postinstall": "patch-package"
|
2024-03-29 20:08:34 -04:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"bcrypt": "^5.1.1",
|
|
|
|
|
"cors": "^2.8.5",
|
|
|
|
|
"dotenv": "^16.4.4",
|
|
|
|
|
"express": "^4.18.2",
|
2025-03-01 19:24:24 -05:00
|
|
|
"express-list-endpoints": "^7.1.1",
|
2025-02-21 14:48:21 -05:00
|
|
|
"express-session": "^1.18.0",
|
2024-03-29 20:08:34 -04:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
|
|
|
|
"mongodb": "^6.3.0",
|
|
|
|
|
"multer": "^1.4.5-lts.1",
|
|
|
|
|
"nodemailer": "^6.9.9",
|
2025-02-21 14:48:21 -05:00
|
|
|
"passport": "^0.7.0",
|
|
|
|
|
"passport-oauth2": "^1.8.0",
|
|
|
|
|
"passport-openidconnect": "^0.1.2",
|
|
|
|
|
"patch-package": "^8.0.0",
|
2024-03-29 20:08:34 -04:00
|
|
|
"socket.io": "^4.7.2",
|
|
|
|
|
"socket.io-client": "^4.7.2"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-01-11 00:03:05 -05:00
|
|
|
"@eslint/js": "^9.18.0",
|
2024-10-28 12:53:13 -04:00
|
|
|
"cross-env": "^7.0.3",
|
2025-01-11 00:03:05 -05:00
|
|
|
"eslint": "^9.18.0",
|
|
|
|
|
"globals": "^15.14.0",
|
2024-03-29 20:08:34 -04:00
|
|
|
"jest": "^29.7.0",
|
2024-10-01 11:30:26 -04:00
|
|
|
"jest-mock": "^29.7.0",
|
2024-03-29 20:08:34 -04:00
|
|
|
"nodemon": "^3.0.1",
|
|
|
|
|
"supertest": "^6.3.4"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-03-22 16:14:12 -04:00
|
|
|
"node": "22.x"
|
2024-03-29 20:08:34 -04:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"testEnvironment": "node",
|
|
|
|
|
"testMatch": [
|
|
|
|
|
"**/__tests__/**/*.js?(x)",
|
|
|
|
|
"**/?(*.)+(spec|test).js?(x)"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|