-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
98 lines (98 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dsc-website-backend-v2",
"version": "1.2.0",
"description": "Scalable backend with async job scheduling to manage everything @dsckiet",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"prod": "node index.js",
"lint": "prettier \"**/*.{js, json, md, html, css, yml}\" --write"
},
"repository": {
"type": "git",
"url": "https://github.com/dsckiet/website-backend-v2.git"
},
"author": {
"name": "Developer Student Clubs KIET",
"email": "[email protected]",
"url": "https://dsckiet.com"
},
"contributors": [
{
"name": "Ritik Srivastava",
"email": "[email protected]",
"url": "https://ritiksr25.tech"
},
{
"name": "Rohan Mehta",
"email": "[email protected]",
"url": "https://rhnmht30.dev"
},
{
"name": "Priyanshu Sharma",
"email": "[email protected]",
"url": "https://priyanshusharma.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dsckiet/website-backend-v2/issues"
},
"homepage": "https://portal.dsckiet.com",
"keywords": [
"portal",
"nodejs",
"redis",
"kue",
"management-system",
"mongodb",
"sentry"
],
"dependencies": {
"@pdf-lib/fontkit": "^1.0.0",
"@sentry/node": "^5.15.5",
"aws-sdk": "^2.640.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.1.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"helmet": "^3.21.3",
"jsonwebtoken": "^8.5.1",
"kue": "^0.11.6",
"lodash": "^4.17.21",
"log4js": "^6.1.2",
"mongoose": "^5.7.3",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"newrelic": "^7.4.0",
"nodemailer": "^6.4.5",
"nodemailer-html-to-text": "^3.1.0",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"pdf-lib": "^1.7.0",
"rate-limit-redis": "^2.1.0",
"redis": "^3.0.2",
"uuidv4": "^6.2.7"
},
"devDependencies": {
"husky": "4.3.0",
"lint-staged": "10.4.2",
"prettier": "^2.1.2"
},
"lint-staged": {
"*.{js, jsx, json, md, html, css, yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}