Bump dependencies

This commit is contained in:
Max Isom 2020-05-30 21:37:40 -05:00
parent 7fcd9a6a7d
commit 58fcc481ba
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
4 changed files with 3635 additions and 24 deletions

3611
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -25,25 +25,25 @@
"docker-publish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t codetheweb/muse:latest --push ." "docker-publish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t codetheweb/muse:latest --push ."
}, },
"devDependencies": { "devDependencies": {
"@types/bluebird": "^3.5.30", "@types/bluebird": "^3.5.32",
"@types/debug": "^4.1.5", "@types/debug": "^4.1.5",
"@types/fluent-ffmpeg": "^2.1.14", "@types/fluent-ffmpeg": "^2.1.14",
"@types/fs-capacitor": "^2.0.0", "@types/fs-capacitor": "^2.0.0",
"@types/node": "^13.9.5", "@types/node": "^14.0.6",
"@types/node-emoji": "^1.8.1", "@types/node-emoji": "^1.8.1",
"@types/spotify-web-api-node": "^4.0.1", "@types/spotify-web-api-node": "^4.0.1",
"@types/validator": "^12.0.1", "@types/validator": "^13.0.0",
"@types/ws": "^7.2.3", "@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.25.0", "@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^2.25.0", "@typescript-eslint/parser": "^3.0.2",
"eslint": "^6.8.0", "eslint": "^7.1.0",
"eslint-config-xo": "^0.29.1", "eslint-config-xo": "^0.29.1",
"eslint-config-xo-typescript": "^0.27.0", "eslint-config-xo-typescript": "^0.29.0",
"husky": "^4.2.3", "husky": "^4.2.5",
"nodemon": "^2.0.2", "nodemon": "^2.0.4",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"ts-node": "^8.8.1", "ts-node": "^8.10.2",
"typescript": "^3.8.3" "typescript": "^3.9.3"
}, },
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [
@ -67,30 +67,30 @@
} }
}, },
"dependencies": { "dependencies": {
"@discordjs/opus": "^0.1.0", "@discordjs/opus": "^0.3.2",
"array-shuffle": "^1.0.1", "array-shuffle": "^1.0.1",
"debug": "^4.1.1", "debug": "^4.1.1",
"delay": "^4.3.0", "delay": "^4.3.0",
"discord.js": "^12.1.1", "discord.js": "^12.2.0",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"fluent-ffmpeg": "^2.1.2", "fluent-ffmpeg": "^2.1.2",
"fs-capacitor": "^6.1.0", "fs-capacitor": "^6.2.0",
"get-youtube-id": "^1.0.1", "get-youtube-id": "^1.0.1",
"got": "^10.7.0", "got": "^11.1.4",
"hasha": "^5.2.0", "hasha": "^5.2.0",
"inversify": "^5.0.1", "inversify": "^5.0.1",
"iso8601-duration": "^1.2.0", "iso8601-duration": "^1.2.0",
"make-dir": "^3.0.2", "make-dir": "^3.1.0",
"node-emoji": "^1.10.0", "node-emoji": "^1.10.0",
"p-limit": "^2.2.2", "p-limit": "^2.3.0",
"sequelize": "^5.21.5", "sequelize": "^5.21.11",
"sequelize-typescript": "^1.1.0", "sequelize-typescript": "^1.1.0",
"spotify-uri": "^2.0.0", "spotify-uri": "^2.0.0",
"spotify-web-api-node": "^4.0.0", "spotify-web-api-node": "^4.0.0",
"sqlite3": "^4.1.1", "sqlite3": "^4.2.0",
"unique-random-array": "^2.0.0", "unique-random-array": "^2.0.0",
"youtube.ts": "^0.1.3", "youtube.ts": "^0.1.3",
"ytdl-core": "^2.0.1", "ytdl-core": "^2.1.5",
"ytsr": "^0.1.12" "ytsr": "^0.1.14"
} }
} }

View file

@ -21,5 +21,5 @@ const spotify = container.get<Spotify>(TYPES.Lib.Spotify);
await sequelize.sync({}); await sequelize.sync({});
bot.listen(); await bot.listen();
})(); })();

2
src/packages.d.ts vendored
View file

@ -11,7 +11,7 @@ declare module 'ytsr' {
items: VideoResult[]; items: VideoResult[];
} }
export default function (search: string, options: object): Promise<SearchResult>; export default function (search: string, options: Record<string, unknown>): Promise<SearchResult>;
} }
declare module 'array-shuffle' { declare module 'array-shuffle' {