-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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
43
44
45
46
47
48
49
{
"name": "project-management",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"dev": "cross-env NODE_ENV=development nodemon app.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand"
},
"type": "module",
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testEnvironment": "node",
"verbose": true
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.812.0",
"@aws-sdk/s3-request-presigner": "^3.812.0",
"agenda": "^5.0.0",
"bcrypt": "^6.0.0",
"bullmq": "^5.56.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.2",
"multer": "^2.0.0",
"nodemailer": "^7.0.3",
"redis": "^5.5.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"babel-jest": "^30.0.2",
"jest": "^30.0.3",
"nodemon": "^3.1.10",
"supertest": "^7.1.1"
}
}