-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 971 Bytes
/
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
{
"name": "api",
"version": "1.0.0",
"description": "Origen V3 Backend",
"main": "app.js",
"scripts": {
"test": "node ./tests/test.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elskater98/OrigenV3-Back.git"
},
"keywords": [
"Node.js",
"Express",
"JWT"
],
"author": "Francesc Contreras Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/elskater98/OrigenV3-Back/issues"
},
"homepage": "https://github.com/elskater98/OrigenV3-Back#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"jest": "^26.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.25",
"mongoose-validator": "^2.1.0",
"socket.io": "^4.4.0",
"supertest": "^4.0.2",
"validator": "^13.1.1"
},
"devDependencies": {
"cors": "^2.8.5",
"helmet": "^3.23.3"
}
}