2022-01-04 02:18:28 +05:00
|
|
|
{
|
|
|
|
"name": "jaba",
|
2022-11-09 21:33:45 +05:00
|
|
|
"version": "4.1.14",
|
2022-08-02 17:18:47 +05:00
|
|
|
"description": "My Discord Bot",
|
2022-01-04 02:18:28 +05:00
|
|
|
"main": "index.js",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"start": "node .",
|
|
|
|
"lint": "eslint . --ext .js",
|
2022-07-22 19:15:47 +05:00
|
|
|
"testcfg": "node scripts/verify-config.js"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
2022-07-31 17:08:00 +05:00
|
|
|
"author": "Jonny_Bro#4226",
|
2022-01-04 02:18:28 +05:00
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2022-08-03 20:57:54 +05:00
|
|
|
"@discord-player/extractor": "^3.0.2",
|
2022-07-31 17:08:00 +05:00
|
|
|
"@discordjs/opus": "^0.8.0",
|
2022-08-25 21:25:24 +05:00
|
|
|
"@discordjs/rest": "^1.1.0",
|
2022-07-31 17:08:00 +05:00
|
|
|
"@discordjs/voice": "^0.11.0",
|
2022-01-04 02:18:28 +05:00
|
|
|
"btoa": "^1.2.1",
|
|
|
|
"canvacord": "^5.1.0",
|
2022-01-24 01:38:42 +05:00
|
|
|
"canvas": "^2.9.0",
|
2022-08-29 21:31:36 +05:00
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"cron": "^2.1.0",
|
2022-08-25 21:25:24 +05:00
|
|
|
"discord-api-types": "^0.37.5",
|
|
|
|
"discord-giveaways": "^6.0.1",
|
2022-10-31 14:17:55 +05:00
|
|
|
"discord-player-play-dl": "^5.3.9",
|
2022-08-25 21:25:24 +05:00
|
|
|
"discord.js": "^14.3.0",
|
2022-01-04 02:18:28 +05:00
|
|
|
"ejs": "^3.1.3",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"express-session": "^1.17.0",
|
2022-03-09 20:29:30 +05:00
|
|
|
"gamedig": "^4.0.2",
|
2022-08-29 21:31:36 +05:00
|
|
|
"i18next": "^21.9.1",
|
|
|
|
"i18next-fs-backend": "^1.1.5",
|
|
|
|
"markdown-table": "^2.0.0",
|
2022-01-04 02:18:28 +05:00
|
|
|
"md5": "^2.2.1",
|
|
|
|
"moment": "^2.26.0",
|
2022-08-29 21:31:36 +05:00
|
|
|
"mongoose": "^5.13.15",
|
2022-10-31 13:17:36 +05:00
|
|
|
"ms": "^2.1.3"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-08-29 21:31:36 +05:00
|
|
|
"eslint": "^8.23.0"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
2022-08-01 20:06:09 +05:00
|
|
|
"es2020": true,
|
2022-01-04 02:18:28 +05:00
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2020
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"prefer-const": [
|
|
|
|
"error"
|
|
|
|
],
|
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
"tab",
|
|
|
|
{
|
|
|
|
"SwitchCase": 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"double"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"linebreak-style": 0,
|
|
|
|
"require-atomic-updates": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"eslintIgnore": [
|
|
|
|
"dashboard/public"
|
|
|
|
]
|
|
|
|
}
|