-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
44
45
46
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js -p $PORT",
"test": "jest"
},
"testEnvironment": "node",
"author": "Rajeswar Sharma",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.21.1",
"@sentry/tracing": "^7.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cloudinary": "^1.27.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"hbs": "^4.1.2",
"is-image": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"mongo-sanitize": "^1.1.0",
"mongoose": "^6.0.7",
"multer": "^1.4.3",
"multer-gridfs-storage": "^5.0.1",
"nodemailer": "^6.6.5",
"nodemon": "^2.0.13",
"passport": "^0.5.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^27.5.1",
"supertest": "^6.2.2"
}
}