-
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.47 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.47 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": "mailguard-pro",
"version": "2.0.0",
"description": "Enterprise phishing email analysis & threat intelligence platform (rule-based core, AI hooks reserved for later).",
"main": "server/index.js",
"bin": {
"mailguardpro": "./bin/cli.js"
},
"type": "commonjs",
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"seed": "node server/db/seed.js",
"seed:pk": "node bin/seed-pk-institutions.js",
"check": "node bin/check-domain.js",
"recon": "node bin/recon.js",
"inspect": "node bin/inspect-url.js",
"report": "node bin/recon-report.js",
"inbox": "node bin/scan-inbox.js",
"scan": "node bin/full-scan.js",
"user": "node bin/user.js",
"cli": "node bin/cli.js",
"test": "node tests/test_advanced.js && node tests/test_sandbox.js && node tests/test_users.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.19.0",
"better-sqlite3": "^11.0.0",
"bullmq": "^6.2.1",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"imapflow": "^1.4.6",
"ioredis": "^6.0.0",
"knex": "^3.3.0",
"mailparser": "^3.9.8",
"morgan": "^1.10.0",
"pdfkit": "^0.19.1",
"pg": "^8.23.0",
"uuid": "^14.0.1",
"whois": "^2.16.2"
},
"allowScripts": {
"better-sqlite3@11.10.0": true
},
"overrides": {
"deepmerge-ts": "^8.0.2",
"html-to-text": "^10.0.1"
}
}