-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 900 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
38
39
{
"name": "ecommerce",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "nyc mocha test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.739.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.1.3",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.5",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.4.11",
"nodemailer-sendgrid-transport": "^0.2.0",
"passport": "^0.4.1",
"validator": "^13.1.17",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"supertest": "^4.0.2"
}
}