-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.05 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
{
"name": "heig-ddc-discord-bot",
"version": "1.7.3",
"private": true,
"main": "dist/bot.js",
"license": "MIT",
"type": "commonjs",
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src --ext ts",
"lint:fix": "npm run lint -- --fix",
"tsc:check": "tsc --noEmit",
"dev": "npm run build && NODE_ENV=development run-p build:watch start",
"dev:inspect": "npm run build && NODE_ENV=development run-p build:watch start:inspect",
"start": "node dist/bot.js",
"start:inspect": "node --inspect dist/bot.js",
"test": "run-p lint tsc:check",
"release": "HUSKY=0 standard-version",
"prepare": "husky install"
},
"dependencies": {
"@sapphire/decorators": "^6.1.0",
"@sapphire/discord-utilities": "^3.4.1",
"@sapphire/discord.js-utilities": "^7.3.0",
"@sapphire/fetch": "^3.0.3",
"@sapphire/framework": "^5.2.1",
"@sapphire/pieces": "^4.3.1",
"@sapphire/plugin-editable-commands": "^4.0.2",
"@sapphire/plugin-hmr": "^3.0.1",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.1",
"@sapphire/plugin-subcommands": "^7.0.0",
"@sapphire/result": "^2.6.6",
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"@twurple/eventsub-http": "^7.1.0",
"any-date-parser": "^1.5.4",
"bufferutil": "^4.0.8",
"common-tags": "^1.8.2",
"dayjs": "^1.11.13",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"erlpack": "github:discord/erlpack",
"firebase-admin": "^12.5.0",
"firelord": "^2.8.20",
"ms": "^2.1.3",
"protobufjs": "^7.4.0",
"ts-proto": "^2.2.0",
"utf-8-validate": "^6.0.4",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@sapphire/cli": "^1.9.3",
"@sapphire/ts-config": "^5.0.1",
"@twurple/eventsub-base": "^7.1.0",
"@types/common-tags": "^1.8.4",
"@types/ms": "^0.7.34",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"firebase": "^10.13.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"resolve.exports": "^2.0.2",
"standard-version": "^9.5.0",
"typescript": "~5.6.2"
},
"engines": {
"node": ">=18"
}
}