-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 860 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 860 Bytes
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
{
"name": "api-server",
"version": "1.0.0",
"description": "Backend API for Online Judge system",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"body-parser": "^1.20.2",
"bullmq": "^5.8.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^8.0.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.4",
"node-gyp": "^11.2.0",
"nodemailer": "^7.0.5",
"slugify": "^1.6.6",
"socket.io": "^4.8.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^30.0.4",
"nodemon": "^3.1.0",
"supertest": "^7.1.3"
}
}