-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "erela.js-music-bot",
"version": "1.0.0",
"description": "🎧 A simple Discord music bot built using ErelaJS and Lavalink.",
"author": {
"email": "demirci.baris38@gmail.com",
"name": "Barış DEMİRCİ",
"url": "https://bariscodes.me"
},
"license": "MPL-2.0",
"private": true,
"scripts": {
"prebuild": "npm run prebuild:dev && rimraf application.yaml",
"build": "npm run build:dev && npm run createLavalinkConfig",
"prebuild:dev": "rimraf dist",
"build:dev": "tsc",
"format": "prettier --write .",
"format:watch": "onchange . -- prettier --write {{changed}}",
"pm2:lavalink": "pm2 start dist/scripts/lavalink.js --name \"Lavalink\"",
"pm2:bot": "pm2 start dist/src/index.js --name \"Bot\"",
"pm2:kill": "pm2 kill",
"start": "npm run pm2:lavalink && npm run pm2:bot",
"start:dev": "nodemon",
"start:bot": "node dist/src",
"start:lavalink": "node dist/scripts/lavalink",
"start:cross": "concurrently \"npm run start:lavalink\" \"npm run start:bot\"",
"createLavalinkConfig": "node dist/scripts/createLavalinkConfig",
"kill": "npm run pm2:kill"
},
"dependencies": {
"@discordjs/opus": "^0.3.3",
"bargs": "^1.0.1",
"bufferutil": "^4.0.2",
"concurrently": "^5.3.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"erela.js": "^2.3.0",
"erlpack": "discord/erlpack",
"express": "^4.17.1",
"libsodium-wrappers": "^0.7.8",
"locale-parser": "^1.1.2",
"mongoose": "^5.11.8",
"utf-8-validate": "^5.0.3",
"winston": "^3.3.3",
"yaml": "^1.10.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"onchange": "^7.1.0",
"pm2": "^4.5.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/4803-music-bot"
}
}