-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "phish.directory",
"version": "3.1.0",
"description": "API for phish.directory, a community-driven anti-phishing tool. Helping catch, prevent, and catalog phishing links & attempts.",
"maintainers": [
{
"name": "Jasper Mayone",
"email": "[email protected]"
}
],
"scripts": {
"start": "bun run dist/index.js",
"dev": "bun run --watch src/index.ts",
"build": "bunx prisma generate && tsc",
"compile": "bunx prisma generate && tsc"
},
"keywords": [],
"author": "Jasper Mayone <[email protected]>",
"dependencies": {
"@jaspermayone/disposable-email-detector": "^1.0.0",
"@playwright/test": "^1.49.1",
"@prisma/client": "6.4.1",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"colors": "^1.4.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-jsdoc-swagger": "^1.8.0",
"express-rate-limit": "^7.5.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"node-statsd": "^0.1.1",
"postmark": "^4.0.5",
"request-ip": "^3.3.0",
"response-time": "^2.3.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"bun-types": "latest",
"@flydotio/dockerfile": "^0.6.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.10",
"@types/node-statsd": "^0.1.6",
"@types/request-ip": "^0.0.41",
"@types/response-time": "^2.3.8",
"nodemon": "^3.1.9",
"prisma": "^6.4.1",
"typescript": "^5.7.2"
}
}