3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

chore: update backend packages

This commit is contained in:
Dragory 2023-07-01 12:32:16 +00:00
parent 761ff27771
commit 370c3666c7
No known key found for this signature in database
4 changed files with 732 additions and 943 deletions

1658
backend/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -31,9 +31,9 @@
"dependencies": { "dependencies": {
"@silvia-odwyer/photon-node": "^0.3.1", "@silvia-odwyer/photon-node": "^0.3.1",
"bufferutil": "^4.0.3", "bufferutil": "^4.0.3",
"clinic": "^12.1.0", "clinic": "^13.0.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"cross-env": "^5.2.0", "cross-env": "^7.0.3",
"deep-diff": "^1.0.2", "deep-diff": "^1.0.2",
"discord.js": "^14.11.0", "discord.js": "^14.11.0",
"dotenv": "^4.0.0", "dotenv": "^4.0.0",
@ -55,10 +55,10 @@
"lodash.isequal": "^4.5.0", "lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0", "lodash.pick": "^4.4.0",
"moment-timezone": "^0.5.21", "moment-timezone": "^0.5.21",
"multer": "^1.4.3", "multer": "^1.4.5-lts.1",
"mysql": "^2.16.0", "mysql": "^2.16.0",
"parse-color": "^1.0.0", "parse-color": "^1.0.0",
"passport": "^0.4.0", "passport": "^0.6.0",
"passport-custom": "^1.0.5", "passport-custom": "^1.0.5",
"passport-oauth2": "^1.6.1", "passport-oauth2": "^1.6.1",
"pkg-up": "^3.1.0", "pkg-up": "^3.1.0",
@ -74,7 +74,7 @@
"twemoji": "^12.1.4", "twemoji": "^12.1.4",
"typeorm": "^0.3.17", "typeorm": "^0.3.17",
"utf-8-validate": "^5.0.5", "utf-8-validate": "^5.0.5",
"uuid": "^3.3.2", "uuid": "^9.0.0",
"yawn-yaml": "github:dragory/yawn-yaml#string-number-fix-build", "yawn-yaml": "github:dragory/yawn-yaml#string-number-fix-build",
"zlib-sync": "^0.1.7", "zlib-sync": "^0.1.7",
"zod": "^3.7.2" "zod": "^3.7.2"
@ -94,7 +94,8 @@
"@types/safe-regex": "^1.1.2", "@types/safe-regex": "^1.1.2",
"@types/tmp": "0.0.33", "@types/tmp": "0.0.33",
"@types/twemoji": "^12.1.0", "@types/twemoji": "^12.1.0",
"ava": "^3.15.0", "@types/uuid": "^9.0.2",
"ava": "^5.3.1",
"rimraf": "^2.6.2", "rimraf": "^2.6.2",
"source-map-support": "^0.5.16" "source-map-support": "^0.5.16"
}, },

View file

@ -2,7 +2,7 @@ import crypto from "crypto";
import moment from "moment-timezone"; import moment from "moment-timezone";
import { Repository } from "typeorm"; import { Repository } from "typeorm";
// tslint:disable-next-line:no-submodule-imports // tslint:disable-next-line:no-submodule-imports
import uuidv4 from "uuid/v4"; import { v4 as uuidv4 } from "uuid";
import { DAYS, DBDateFormat } from "../utils"; import { DAYS, DBDateFormat } from "../utils";
import { BaseRepository } from "./BaseRepository"; import { BaseRepository } from "./BaseRepository";
import { dataSource } from "./dataSource"; import { dataSource } from "./dataSource";

View file

@ -8,7 +8,7 @@ import {
MessageCreateOptions, MessageCreateOptions,
} from "discord.js"; } from "discord.js";
import moment from "moment"; import moment from "moment";
import uuidv4 from "uuid/v4"; import { v4 as uuidv4 } from "uuid";
import { noop } from "../utils"; import { noop } from "../utils";
export async function waitForButtonConfirm( export async function waitForButtonConfirm(