-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "aprentic-campus-api",
"version": "1.0.0",
"description": "API REST para gestion academica multi-campus con Node.js, Express y MongoDB.",
"main": "src/server.js",
"scripts": {
"demo": "node scripts/demo-server.js",
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"seed": "node scripts/seed.js",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"userAPI": "node scripts/userA.js"
},
"keywords": [
"express",
"mongodb",
"mongoose",
"jwt",
"aprentic"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parse": "^5.5.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}