-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
{
"name": "labs-reservation-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.16.0",
"npm": "8.11.0"
},
"scripts": {
"start": "nodemon src/index.js",
"test": "mocha src/test/*.test.js --recursive --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ce-labs/labs-reservation-api.git"
},
"keywords": [
"ce-labs",
"itcr",
"Ingeniería en Computadores",
"reservación de laboratorios"
],
"author": "ce-labs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ce-labs/labs-reservation-api/issues"
},
"homepage": "https://github.com/ce-labs/labs-reservation-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.1.3",
"mongodb": "^4.1.3",
"mongoose": "^6.0.12",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.20",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"supertest": "^6.1.6"
}
}