-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"name": "hellcom-bot",
"description": "Welcome to the repo for HellCom Discord bot! This bot is intended to be a helper/utility for Helldivers's community. Democracy!",
"version": "0.0.0",
"author": "jgaribsin",
"license": "AGPL-3.0-only",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"db-generate": "drizzle-kit generate",
"db-migrate": "tsx ./src/db/migrate.ts",
"db-push": "drizzle-kit push",
"db-studio": "drizzle-kit studio",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"postbuild": "copyfiles package.json build",
"watch-bot": "nodemon -L ./src/index.ts",
"watch-support": "nodemon -L ./src/support.ts",
"start-bot": "node ./build/src/index.js",
"start-support": "node ./build/src/support.js",
"start": "pm2 start ecosystem.config.js --no-daemon"
},
"devDependencies": {
"@types/newrelic": "^9.14.3",
"@types/node": "^20.8.2",
"@types/node-cron": "^3.0.11",
"drizzle-kit": "^0.21.2",
"gts": "^5.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@newrelic/winston-enricher": "^4.0.1",
"ajv": "^8.12.0",
"axios": "^1.6.7",
"canvas": "^2.10.2",
"chart.js": "^3.9.1",
"chartjs-node-canvas": "^4.1.6",
"copyfiles": "^2.4.1",
"dayjs": "^1.11.10",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.1",
"fuzzysort": "^2.0.4",
"newrelic": "^11.12.0",
"node-cron": "^3.0.3",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"redis": "^4.6.14",
"winston": "^3.12.0"
}
}