-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.28 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
48
49
50
51
52
53
54
55
56
{
"name": "discordbot",
"version": "2.3",
"description": "A simple discord bot of mine developed with discord.js (Node.js).",
"main": "index.js",
"keywords": [
"discord",
"discordjs",
"discordbot",
"bot",
"economy",
"gambling",
"moderation",
"administration",
"utility",
"sql",
"mariadb"
],
"author": {
"name": "vb2007",
"email": "admin@vb2007.hu",
"url": "https://vb2007.hu"
},
"repository": {
"type": "git",
"url": "https://github.com/vb2007/discordbot.git"
},
"bugs": {
"url" : "https://github.com/vb2007/discordbot/issues"
},
"license": "AGPL-3.0-only",
"dependencies": {
"ajv": "^8.17.1",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"fetch": "^1.1.0",
"google-translate-api-x": "^10.7.1",
"jest": "^29.7.0",
"mariadb": "^3.3.0",
"node-fetch": "^3.3.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2"
},
"scripts": {
"app": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"deploy": "node ./src/deploy-commands.js",
"create-tables": "node ./src/create-tables.js",
"verify-config": "node ./src/scripts/verify-config-syntax.js",
"test": "jest"
}
}