-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "my_first_api",
"version": "1.0.0",
"description": "API en Node.Js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorHugoRoman/backend-section.git"
},
"author": "Victor Hugo Roman Ruiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/VictorHugoRoman/backend-section/issues"
},
"homepage": "https://github.com/VictorHugoRoman/backend-section#readme",
"dependencies": {
"awilix": "^4.3.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.10.15",
"mongoose-autopopulate": "^0.12.3",
"swagger-ui-express": "^4.1.5"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"mockingoose": "^2.13.2",
"nodemon": "^2.0.6"
}
}