-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@progsoc/progbot",
"version": "1.16.1",
"description": "A Discord bot for ProgSoc",
"author": "ProgSoc",
"private": false,
"license": "UNLICENSED",
"bin": {
"progbot": "./dist/main.js"
},
"scripts": {
"build": "pnpm tsup",
"dev": "pnpm tsup --watch",
"start": "node dist/main.js --enable-source-maps",
"healthcheck": "node dist/healthcheck.js",
"format": "pnpm dlx @biomejs/biome format ./src --write",
"lint": "pnpm dlx @biomejs/biome lint ./src --apply",
"generate": "pnpm drizzle-kit generate:pg",
"tsc": "tsc",
"publish:ci": "pnpm publish && pnpm changeset tag"
},
"dependencies": {
"@dynamicabot/signales": "2.1.2",
"@keyv/redis": "2.8.5",
"@necord/pagination": "1.3.1",
"@nestjs/cache-manager": "2.3.0",
"@nestjs/common": "10.4.15",
"@nestjs/config": "3.3.0",
"@nestjs/core": "10.4.15",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.15",
"@sentry/integrations": "7.114.0",
"@sentry/node": "7.120.1",
"ascii-table3": "0.9.0",
"cache-manager": "5.7.6",
"cache-manager-ioredis-yet": "2.1.2",
"cheerio": "1.0.0",
"csv-parse": "5.6.0",
"deepmerge": "4.3.1",
"discord-api-types": "0.37.93",
"discord.js": "14.16.2",
"dotenv": "16.4.7",
"drizzle-orm": "0.33.0",
"ioredis": "5.4.1",
"lunr": "2.3.9",
"luxon": "3.5.0",
"meilisearch": "0.41.0",
"necord": "6.8.6",
"node-html-markdown": "1.3.0",
"nodemailer": "6.9.16",
"passport": "0.7.0",
"passport-discord": "0.1.4",
"pg": "8.13.1",
"piscina": "4.8.0",
"postgres": "3.4.5",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"stream-transform": "3.3.3",
"terminal-link": "3.0.0",
"zod": "3.24.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@nestjs/cli": "10.4.9",
"@swc/core": "1.10.1",
"@types/cache-manager-redis-store": "2.0.4",
"@types/express": "4.17.21",
"@types/lunr": "2.3.7",
"@types/luxon": "3.4.2",
"@types/node": "20.17.9",
"@types/nodemailer": "6.4.17",
"@types/passport": "1.0.17",
"drizzle-kit": "0.20.17",
"lefthook": "1.9.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
},
"type": "module",
"module": "dist/main.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}