-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "proyecto-final-backend-coderhouse",
"version": "1.0.0",
"description": "Proyecto final del curso de Desarrollo Backend de Coderhouse.",
"main": "./server.js",
"type": "module",
"scripts": {
"test": "mocha ./src/test/products.test.js",
"dev": "nodemon -r dotenv/config server.js",
"start": "node -r dotenv/config server.js"
},
"keywords": [],
"author": "Luca Pandolfelli",
"license": "ISC",
"dependencies": {
"axios": "^1.2.0",
"bcrypt": "5.1.0",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "^2.8.5",
"dotenv": "16.0.3",
"ejs": "3.1.8",
"express": "4.18.1",
"express-graphql": "^0.12.0",
"firebase-admin": "^11.3.0",
"graphql": "^15.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "6.7.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "6.8.0",
"passport": "^0.5.3",
"passport-local": "1.0.0",
"socket.io": "^4.5.4",
"twilio": "3.83.1",
"winston": "3.8.2"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nodemon": "2.0.19",
"supertest": "^6.3.1"
}
}