-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "greet-guardian",
"version": "1.0.0",
"description": "discord bot funny sound.",
"main": "index.js",
"scripts": {
"dev": "ts-node --transpile-only src/index.ts",
"prod": "npx tsc && node dist/index.js",
"register-commands-dev": "ts-node src/commands/registerCommands.ts",
"register-commands-prod": "node dist/commands/registerCommands.js",
"lint": "npx eslint src/ ",
"build": "npx tsc"
},
"author": "fabioceleste",
"license": "ISC",
"devDependencies": {
"@eslint/js": "9.7.0",
"@types/eslint__js": "8.42.3",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.14.12",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"prisma": "^5.17.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "7.17.0"
},
"dependencies": {
"@discordjs/voice": "^0.17.0",
"@prisma/client": "^5.17.0",
"axios": "^1.7.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"libsodium-wrappers": "^0.7.14",
"node-fetch": "^3.3.2",
"pg": "^8.12.0",
"uuid": "^10.0.0"
}
}