-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "phish.directory",
"version": "2.1.0",
"description": "API for phish.directory, a community-driven anti-phishing tool. Helping catch, prevent, and catalog phishing links & attempts.",
"main": "src/index.ts",
"maintainers": [
{
"name": "Jasper Mayone",
"email": "[email protected]",
"url": "https://jaspermayone.com"
}
],
"scripts": {
"start": "node dist/index.js",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"dev": "nodemon --quiet --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"build": "npx prisma generate && tsc",
"compile": "npx prisma generate && tsc"
},
"keywords": [],
"author": "Jasper Mayone <[email protected]>",
"dependencies": {
"@playwright/test": "^1.49.1",
"@prisma/client": "6.1.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"client@latest": "link:prisma/client@latest",
"colors": "^1.4.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-jsdoc-swagger": "^1.8.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"node-statsd": "^0.1.1",
"request-ip": "^3.3.0",
"response-time": "^2.3.3",
"stripe": "^16.12.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@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.2.1",
"typescript": "^5.7.2"
},
"engines": {
"node": "22.x",
"npm": "10.8.2"
}
}