-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
57
58
59
60
61
62
63
{
"name": "discordbot-template-ts",
"version": "0.6.5",
"description": "Template for creating your own bot based on discord-js written in Typescript",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn src/index.ts | pino-pretty -c -l -t dd.mm.yyyy -i hostname,pid",
"start": "node dist/index.js | pino-pretty -c -l -t dd.mm.yyyy -i hostname,pid",
"build": "npx tsc && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GamesTwoLife/DiscordBot-TemplateTS.git"
},
"keywords": [
"mongodb",
"mongoose",
"typescript",
"discord",
"discordjs",
"discord-bot",
"discord-js",
"discord-bot-template",
"discord-bot-templatets",
"discord-bot-template-ts",
"bot-template",
"bot-template-ts",
"ts-bot-template",
"discord-handler",
"discordjs-v14",
"discord-js-handler-v14",
"discord-ts-handler-v14",
"discord-v14",
"discord-v14-ts"
],
"author": "GamesTwoLife",
"contributors": [
"GamesTwoLife <vova08059910@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GamesTwoLife/DiscordBot-TemplateTS/issues"
},
"homepage": "https://github.com/GamesTwoLife/DiscordBot-TemplateTS#readme",
"dependencies": {
"colors": "^1.4.0",
"discord.js": "^14.15.3",
"i18next": "^23.11.5",
"md5": "^2.3.0",
"mongoose": "^8.4.1",
"pino": "^7.0.0-rc.9",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.13.0",
"@types/ws": "^8.5.10",
"nodemon": "^3.1.2",
"pino-pretty": "^11.1.0"
}
}