-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.03 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
{
"name": "discord-music-bot-message-control",
"version": "1.0.0",
"description": "A sophisticated Discord music bot with message-based interaction and seamless music playback.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"/.{js,jsx,ts,tsx}\"",
"test": "jest",
"build": "tsc && tsc-watch --onSuccess \"npm run build:prod\"",
"build:prod": "tsc --module commonjs --outDir dist && tsc-watch --onSuccess \"npm run build:prod\"",
"docker:build": "docker build -t discord-music-bot .",
"docker:run": "docker run -d -p 8080:8080 discord-music-bot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/discord-music-bot-message-control.git"
},
"author": "Spectra.codes",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"discord.js": "^14.11.0",
"discord-player": "^5.0.2",
"dotenv": "^16.3.1",
"genius-lyrics-api": "^1.3.0",
"jsonwebtoken": "^9.0.0",
"lastfm-node": "^1.1.5",
"mysql2": "^3.5.0",
"redis": "^4.6.6",
"spotify-web-api-node": "^5.0.2",
"ytdl-core": "^5.0.0",
"youtube-sr": "^3.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/discord.js": "^14.6.2",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/lastfm-node": "^1.0.0",
"@types/mysql2": "^3.0.0",
"@types/node": "^20.5.1",
"@types/redis": "^4.0.12",
"@types/spotify-web-api-node": "^5.0.0",
"@types/youtube-sr": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^16.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}