-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "discord-bot-nodejs",
"description": "Bot básico com comandos de utilidade e administração",
"version": "1.0.0",
"main": "bot.js",
"license": "MIT",
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"dev": "nodemon .",
"start": "node .",
"format": "prettier --write src"
},
"dependencies": {
"@vitalets/google-translate-api": "^9.0.0",
"axios": "^1.3.4",
"country-emoji-languages": "^1.0.0",
"discord-together": "^1.3.31",
"discord.js": "^14.23.2",
"dotenv": "^16.0.3",
"fixedsize-map": "^1.0.1",
"iso-639-1": "^2.1.15",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"mongoose": "^8.19.2",
"node-fetch": "^2.6.7",
"pino": "^10.1.0",
"pino-pretty": "^9.1.1",
"sourcebin_js": "^0.0.3-ignore",
"table": "^6.8.1"
},
"keywords": [],
"_moduleAliases": {
"@root": ".",
"@handlers": "src/handlers/",
"@helpers": "src/helpers/",
"@schemas": "src/database/schemas/",
"@src": "src/",
"@structures": "src/structures/"
}
}