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:
parent
761ff27771
commit
370c3666c7
4 changed files with 732 additions and 943 deletions
1658
backend/package-lock.json
generated
1658
backend/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -31,9 +31,9 @@
|
|||
"dependencies": {
|
||||
"@silvia-odwyer/photon-node": "^0.3.1",
|
||||
"bufferutil": "^4.0.3",
|
||||
"clinic": "^12.1.0",
|
||||
"clinic": "^13.0.0",
|
||||
"cors": "^2.8.5",
|
||||
"cross-env": "^5.2.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"deep-diff": "^1.0.2",
|
||||
"discord.js": "^14.11.0",
|
||||
"dotenv": "^4.0.0",
|
||||
|
@ -55,10 +55,10 @@
|
|||
"lodash.isequal": "^4.5.0",
|
||||
"lodash.pick": "^4.4.0",
|
||||
"moment-timezone": "^0.5.21",
|
||||
"multer": "^1.4.3",
|
||||
"multer": "^1.4.5-lts.1",
|
||||
"mysql": "^2.16.0",
|
||||
"parse-color": "^1.0.0",
|
||||
"passport": "^0.4.0",
|
||||
"passport": "^0.6.0",
|
||||
"passport-custom": "^1.0.5",
|
||||
"passport-oauth2": "^1.6.1",
|
||||
"pkg-up": "^3.1.0",
|
||||
|
@ -74,7 +74,7 @@
|
|||
"twemoji": "^12.1.4",
|
||||
"typeorm": "^0.3.17",
|
||||
"utf-8-validate": "^5.0.5",
|
||||
"uuid": "^3.3.2",
|
||||
"uuid": "^9.0.0",
|
||||
"yawn-yaml": "github:dragory/yawn-yaml#string-number-fix-build",
|
||||
"zlib-sync": "^0.1.7",
|
||||
"zod": "^3.7.2"
|
||||
|
@ -94,7 +94,8 @@
|
|||
"@types/safe-regex": "^1.1.2",
|
||||
"@types/tmp": "0.0.33",
|
||||
"@types/twemoji": "^12.1.0",
|
||||
"ava": "^3.15.0",
|
||||
"@types/uuid": "^9.0.2",
|
||||
"ava": "^5.3.1",
|
||||
"rimraf": "^2.6.2",
|
||||
"source-map-support": "^0.5.16"
|
||||
},
|
||||
|
|
|
@ -2,7 +2,7 @@ import crypto from "crypto";
|
|||
import moment from "moment-timezone";
|
||||
import { Repository } from "typeorm";
|
||||
// tslint:disable-next-line:no-submodule-imports
|
||||
import uuidv4 from "uuid/v4";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import { DAYS, DBDateFormat } from "../utils";
|
||||
import { BaseRepository } from "./BaseRepository";
|
||||
import { dataSource } from "./dataSource";
|
||||
|
|
|
@ -8,7 +8,7 @@ import {
|
|||
MessageCreateOptions,
|
||||
} from "discord.js";
|
||||
import moment from "moment";
|
||||
import uuidv4 from "uuid/v4";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
import { noop } from "../utils";
|
||||
|
||||
export async function waitForButtonConfirm(
|
||||
|
|
Loading…
Add table
Reference in a new issue