-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "discordbot-template",
"version": "3.0.0",
"description": "A discord.js bot template written with JavaScript",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "node ."
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamesTwoLife/DiscordBot-Template.git"
},
"keywords": [
"postgres",
"postgresql",
"discord",
"discordjs",
"discord-bot",
"discord-js",
"discord-bot-template",
"bot-template",
"discord-handler",
"discordjs-v14",
"discord-js-handler-v14",
"discord-v14"
],
"author": {
"name": "GamesTwoLife",
"url": "https://github.com/GamesTwoLife"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/GamesTwoLife/DiscordBot-Template/issues"
},
"homepage": "https://github.com/GamesTwoLife/DiscordBot-Template#readme",
"dependencies": {
"discord.js": "^14.25.1",
"dotenv": "^16.6.1",
"fs": "^0.0.1-security",
"i18next": "^23.10.0",
"ioredis": "^5.8.2",
"ms": "^2.1.3",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"jest": "^29.7.0"
}
}