-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "incident-tracker",
"version": "1.0.0",
"description": "A comprehensive incident tracking system for IT support teams",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest --coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"keywords": [
"incident-management",
"help-desk",
"ticketing-system",
"support",
"nodejs",
"express",
"postgresql",
"mongodb"
],
"author": "Avi <https://github.com/definitelyavi>",
"license": "MIT",
"dependencies": {
"@slack/web-api": "^6.9.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.8.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^5.7.0",
"morgan": "^1.10.0",
"multer": "^2.0.1",
"nodemailer": "^6.9.4",
"pg": "^8.11.3",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.46.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}