-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"type": "module",
"dependencies": {
"@azure/cosmos": "^4.1.0",
"@azure/msal-node": "^2.13.0",
"axios": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-partials": "^0.3.0",
"joi": "^17.13.3",
"mongoose": "^8.5.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
"openai": "^4.56.0",
"redis": "^4.7.0",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"vitest": "^2.0.5"
},
"scripts": {
"build": "echo 'No build step needed'",
"lint": "eslint .",
"start": "node index.js",
"test": "jest",
"test:integration": "vitest run ./integration/app.test.js",
"dev": "nodemon index.js"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"babel-jest": "^29.7.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}