-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "discord-bot",
"version": "1.0.0",
"private": true,
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"build": "nest build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"start": "npm run start:dev",
"nest": "nest",
"start:dev": "nest start --watch -e 'node --experimental-require-module' --",
"start:debug": "nest start --debug 9240 --watch -e 'node --experimental-require-module' --",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"check": "tsc --noEmit",
"check:code": "npm run format && npm run lint && npm run check",
"check:all": "npm run check:code && npm run test:cov",
"test": "vitest",
"test:watch": "vitest --watch",
"test:cov": "vitest --coverage"
},
"dependencies": {
"@discordx/importer": "^1.2.3",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/schedule": "^4.1.0",
"@nestjs/swagger": "^8.0.0",
"@octokit/request-error": "^6.0.0",
"@octokit/rest": "^21.0.0",
"@octokit/types": "^13.4.1",
"@octokit/webhooks-types": "^7.5.1",
"@types/lodash": "^4.14.200",
"@types/luxon": "^3.3.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"cron": "^3.0.0",
"discord.js": "^14.14.0",
"discordx": "^11.7.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"kysely": "^0.27.4",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"openid-client": "6.1.7",
"pg": "^8.12.0",
"semver": "^7.6.3",
"zulip-js": "^2.0.9"
},
"devDependencies": {
"@nestjs/cli": "^10.4.2",
"@nestjs/schematics": "^10.1.2",
"@nestjs/testing": "^10.3.10",
"@swc/core": "^1.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.6",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.2.2",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"volta": {
"node": "22.12.0"
}
}