EvalueTonSavoir/server/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

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",
"postinstall": "patch-package",
"dev": "cross-env NODE_ENV=development nodemon app.js",
"test": "jest --colors"
2024-03-29 20:08:34 -04:00
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/express": "^5.0.0",
2024-03-29 20:08:34 -04:00
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
2024-03-29 20:08:34 -04:00
"dotenv": "^16.4.4",
"express": "^4.18.2",
2024-09-24 17:24:32 -04: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",
"net": "^1.0.2",
2024-03-29 20:08:34 -04:00
"nodemailer": "^6.9.9",
2024-09-24 17:24:32 -04:00
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
2024-09-28 12:51:56 -04:00
"passport-openidconnect": "^0.1.2",
2024-09-28 20:16:29 -04:00
"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": {
"@types/node": "^22.8.4",
"cross-env": "^7.0.3",
2024-03-29 20:08:34 -04:00
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
2024-03-29 20:08:34 -04:00
"nodemon": "^3.0.1",
"supertest": "^6.3.4"
},
"engines": {
"node": "18.x"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.js?(x)",
"**/?(*.)+(spec|test).js?(x)"
]
}
}