-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --coverage"
},
"author": "Raziel Carvajal <razielco@gmail.com>",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@sendgrid/mail": "^7.2.4",
"@sentry/node": "^5.22.3",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.22.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-slash": "^2.0.1",
"express-validator": "^6.6.1",
"fs-extra": "^9.0.1",
"helmet": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"multer": "^1.4.2",
"slug": "^3.3.4",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"morgan": "^1.10.0",
"request": "^2.88.2",
"supertest": "^4.0.2",
"jest": "^26.4.0"
}
}