-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
101 lines (101 loc) · 3.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mittelbot",
"version": "0.68.4",
"description": "A Discord Bot written in Node.js",
"main": "bot/core/shard.js",
"private": true,
"engines": {
"node": ">=18.15.0"
},
"scripts": {
"start:dev": "docker compose up -d && docker logs -f mittelbot",
"stop": "docker compose down",
"restart": "npm run stop && npm run start:dev",
"log": "docker logs -f mittelbot",
"format": "prettier --config .tools/prettier/.prettierrc --ignore-path .tools/prettier/.prettierignore --write .",
"check": "prettier --config .tools/prettier/.prettierrc --ignore-path .tools/prettier/.prettierignore --check .",
"postinstall": "patch-package && husky",
"alias-build": "link-module-alias",
"test": "jest --forceExit",
"bash": "docker compose exec bot bash"
},
"nodemonConfig": {
"ignore": [
"*.json"
]
},
"_moduleAliases": {
"~bot": "./bot",
"~core": "./bot/core",
"~src": "./src",
"~utils": "./utils",
"~assets": "./src/assets"
},
"jest": {
"setupFiles": [
"<rootDir>/.tools/jest/jest.setup.js"
],
"moduleNameMapper": {
"^~bot(.*)$": "<rootDir>/bot$1",
"^~core(.*)$": "<rootDir>/bot/core$1",
"^~src(.*)$": "<rootDir>/src$1",
"^~utils(.*)$": "<rootDir>/utils$1",
"^~assets(.*)$": "<rootDir>/src/assets$1"
}
},
"author": "BlackDayz",
"license": "GPL-3.0",
"dependencies": {
"@discord-player/equalizer": "^0.2.3",
"@discord-player/extractor": "^4.4.6",
"@discord-player/utils": "^0.2.1",
"@discordjs/opus": "github:discordjs/opus",
"@discordjs/rest": "^2.2.0",
"@discordjs/voice": "^0.16.1",
"@distube/ytdl-core": "^4.13.3",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@napi-rs/canvas": "^0.1.51",
"@sentry/node": "^7.109.0",
"@sentry/profiling-node": "^7.111.0",
"@stdlib/assert-is-uri": "^0.2.1",
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.0.0",
"axios": "^1.6.8",
"caller-id": "^0.1.0",
"canvacord": "6.0.2",
"discord-html-transcripts": "^3.2.0",
"discord-logs": "^2.2.1",
"discord-player": "^6.6.8",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"extends-classes": "^1.0.5",
"ffmpeg-static": "^5.2.0",
"googleapis": "^134.0.0",
"husky": "^9.0.11",
"imgur": "^2.4.2",
"jsonwebtoken": "^9.0.2",
"link-module-alias": "^1.2.0",
"module-alias": "^2.2.3",
"moment-timezone": "^0.5.45",
"mysql2": "^3.9.7",
"nconf": "^0.12.1",
"patch-package": "^8.0.0",
"random-animals-api": "^1.2.6",
"rss-parser": "^3.13.0",
"sequelize": "^6.37.2",
"simple-node-logger": "^21.8.12",
"string-mismatch": "^3.0.1",
"translatte": "^3.0.1",
"underscore": "^1.13.6",
"undici": "^6.12.0",
"validator": "^13.11.0",
"ytdl-core": "npm:@distube/ytdl-core@^4.11.10"
},
"devDependencies": {
"@lambocreeper/mock-discord.js": "^3.0.0",
"jest": "^29.7.0",
"node-sloc": "^0.2.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
}
}