Update dependencies
This commit is contained in:
parent
56c49b8e10
commit
4b97e16f0c
4 changed files with 526 additions and 457 deletions
6
.prettierignore
Normal file
6
.prettierignore
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
node_modules
|
||||
dist
|
||||
*.md
|
||||
*.json
|
||||
.vscode
|
||||
packages/db/generated
|
||||
2
TODO.md
Normal file
2
TODO.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
UNUSED 지우기
|
||||
950
package-lock.json
generated
950
package-lock.json
generated
File diff suppressed because it is too large
Load diff
25
package.json
25
package.json
|
|
@ -7,8 +7,8 @@
|
|||
"check": "npm run check:tsc && npm run check:eslint && npm run check:format",
|
||||
"check:eslint": "eslint",
|
||||
"check:tsc": "./node_modules/typescript/bin/tsc --noEmit",
|
||||
"check:format": "prettier --check .",
|
||||
"fix:format": "prettier --write .",
|
||||
"check:format": "prettier --check packages",
|
||||
"fix:format": "prettier --write packages",
|
||||
"build:prisma": "prisma generate",
|
||||
"build:tsc": "./node_modules/typescript/bin/tsc",
|
||||
"build": "npm run build:prisma && npm run build:tsc",
|
||||
|
|
@ -17,26 +17,25 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@discordjs/opus": "^0.10.0",
|
||||
"@discordjs/voice": "^0.19.0",
|
||||
"@prisma/adapter-pg": "^7.2.0",
|
||||
"@prisma/client": "^7.2.0",
|
||||
"@snazzah/davey": "^0.1.9",
|
||||
"discord.js": "^14.25.1",
|
||||
"dotenv": "^17.2.3",
|
||||
"@discordjs/voice": "^0.19.2",
|
||||
"@prisma/adapter-pg": "^7.3.0",
|
||||
"@prisma/client": "^7.8.0",
|
||||
"@snazzah/davey": "^0.1.11",
|
||||
"discord.js": "^14.26.4",
|
||||
"dotenv": "^17.4.2",
|
||||
"extensionless": "^2.0.6",
|
||||
"fastify": "^5.7.1",
|
||||
"fastify": "^5.8.5",
|
||||
"libsodium-wrappers": "^0.8.0",
|
||||
"opusscript": "^0.0.8",
|
||||
"pg": "^8.17.1",
|
||||
"play-dl": "^1.9.7",
|
||||
"prism-media": "^1.3.5",
|
||||
"prisma": "^7.2.0"
|
||||
"prisma": "^7.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@types/ffprobe-static": "^2.0.3",
|
||||
"@types/node": "25.0.9",
|
||||
"@types/pg": "^8.16.0",
|
||||
"@types/node": "25.9.1",
|
||||
"@types/pg": "^8.20.0",
|
||||
"eslint": "^10.4.0",
|
||||
"prettier": "^3.8.3",
|
||||
"typescript-eslint": "^8.59.4",
|
||||
|
|
|
|||
Loading…
Reference in a new issue