-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "discord-music-bot-premium-expansion",
"version": "1.0.0",
"description": "A sophisticated Discord music bot with premium features, designed for engaging and personalized music experiences.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"build": "tsc && webpack --mode production",
"dev": "tsc-watch --onSuccess \"npm run start\"",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"format": "prettier --write \"/.{js,ts,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/discord-music-bot-premium-expansion.git"
},
"author": "Spectra.codes",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/coslynx/discord-music-bot-premium-expansion/issues"
},
"homepage": "https://github.com/coslynx/discord-music-bot-premium-expansion#readme",
"dependencies": {
"@discordjs/voice": "^0.10.1",
"@types/node": "^18.11.18",
"@types/discord.js": "^14.6.1",
"@types/lavalink.js": "^3.0.2",
"@types/yargs": "^17.0.12",
"@types/winston": "^3.4.0",
"@types/moment": "^2.29.4",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"lavalink.js": "^3.1.2",
"moment": "^2.29.4",
"mongoose": "^6.8.4",
"node-fetch": "^3.2.10",
"redis": "^4.6.3",
"typescript": "^4.9.5",
"yargs": "^17.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/redis": "^4.2.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.2",
"webpack": "^5.76.4",
"webpack-cli": "^5.0.1"
}
}