-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "e-commerce-backend-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "https://github.com/AbdOoSaed/e-commerce-backend-nodejs/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/AbdOoSaed/e-commerce-backend-nodejs.git"
},
"bugs": {
"url": "https://github.com/AbdOoSaed/e-commerce-backend-nodejs/issues"
},
"scripts": {
"start:pm2": "pm2 kill & pm2 start -i max src/index.js",
"stop:pm2": "pm2 kill",
"start": "node src/index.js",
"start:dev": "nodemon src/index.js",
"test": "jest --runInBand --verbose --forceExit",
"test:watch": "jest --watchAll --runInBand --verbose --forceExit",
"test:coverage": "jest --runInBand --coverage --forceExit"
},
"keywords": [
"JS",
"NodeJs",
"backend",
"e-commerce"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express-status-monitor": "^1.2.3",
"accesscontrol": "^2.2.1",
"bcrypt": "^5.0.1",
"blurhash": "^1.1.3",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.2.6",
"express-status-monitor": "^1.3.3",
"express-validator": "^6.12.0",
"helmet": "^4.6.0",
"http-auth": "^4.1.5",
"http-auth-connect": "^1.0.4",
"http-status-codes": "^2.1.4",
"imgur": "^0.3.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.11",
"mongoose-intl": "^3.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
"request-ip": "^2.1.3",
"sharp": "^0.28.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/node": "^15.6.0",
"jest": "^27.0.4",
"supertest": "^6.1.3"
}
}