-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 826 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 826 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": "backend",
"version": "0.0.1",
"description": "API de una red social",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"test": "jest --watchAll --verbose --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/luigiMinardi/"
},
"author": "Luigi Minardi, Callum Gordon, Roberto Guzmán",
"license": "MIT",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"axios": "0.26.1",
"bcrypt": "5.0.1",
"cors": "2.8.5",
"dotenv": "16.0.0",
"express": "4.17.3",
"jsonwebtoken": "8.5.1",
"mongoose": "6.2.7"
},
"devDependencies": {
"@types/jest": "27.4.1",
"jest": "27.5.1",
"nodemon": "2.0.15",
"supertest": "6.2.2"
}
}