-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.98 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
{
"name": "0xrythm-bot",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"type": "commonjs",
"scripts": {
"start": "cross-env DOTENV_CONFIG_PATH=.env.local node --trace-warnings -r dotenv/config -r ts-node/register src/app.ts",
"start:prod": "cross-env DOTENV_CONFIG_PATH=.env.prod node --trace-warnings -r dotenv/config -r ts-node/register src/app.ts",
"start:pm2:dev": "pm2 start npm --name \"0xRythm-DEV\" -- run start --time --log ./logs",
"delete:pm2:dev": "pm2 delete \"0xRythm-DEV\" ",
"start:pm2:prod": "pm2 install pm2-logrotate;pm2 set pm2-logrotate:max_size 100M;pm2 start npm --name \"0xRythm-PROD\" -- run start:prod --time --log ./logs",
"delete:pm2:prod": "pm2 delete \"0xRythm-PROD\" ",
"list:pm2": "pm2 list",
"monitor:pm2": "pm2 monit",
"logs:pm2": "pm2 logs",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "0xSaiya",
"license": "MIT",
"repository": {
"url": "https://github.com/hazrid93/0xRhythm-Bot"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.1.0",
"@discordjs/voice": "^0.11.0",
"@types/fluent-ffmpeg": "^2.1.20",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"discord.js": "^14.3.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"fluent-ffmpeg": "^2.1.2",
"http-errors": "^2.0.0",
"libsodium-wrappers": "^0.7.10",
"lodash": "^4.17.21",
"mongodb": "^4.9.1",
"mongoose": "^6.6.0",
"morgan": "^1.10.0",
"node-gtts": "^2.0.2",
"node-opus": "^0.3.3",
"pidusage": "^3.0.0",
"play-dl": "^1.9.5",
"pm2": "^5.2.0",
"typescript": "^4.8.2",
"workerpool": "^6.2.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.15",
"ts-node": "^10.9.1"
}
}