-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "trawler",
"version": "3.0.0",
"description": "A custom bot for the phisherman.gg Discord server.",
"main": "dist/index.js",
"license": "Elastic License 2.0 (ELv2)",
"repository": {
"type": "git",
"url": "https://github.com/PhishermanGG/trawler.git"
},
"private": true,
"scripts": {
"start": "node --unhandled-rejections=strict --enable-source-maps --stack-trace-limit=30 dist/index.js",
"start-dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"deploy": "node --unhandled-rejections=strict --enable-source-maps --stack-trace-limit=30 dist/utils/DeployCommands.js",
"deploy-dev": "ts-node-dev --pretty --transpile-only src/utils/DeployCommands.ts",
"build": "tsc --build --force",
"build-and-start": "tsc --build --force && npm run start"
},
"dependencies": {
"@sentry/node": "^7.108.0",
"axios": "^1.7.2",
"chalk": "^4.1.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"i18next": "^23.12.1",
"is-valid-domain": "^0.1.6",
"is-valid-http-url": "^1.0.3",
"node-schedule": "^2.1.1",
"uuidv7": "^0.6.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^20.11.30",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}