-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.21 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
64
65
66
{
"name": "discord-advanced-stat-bot",
"description": "An advanced Discord stat bot.",
"version": "0.0.1",
"main": "./src/theark.js",
"keywords": [
"discord",
"stat",
"bot",
"coin",
"coin-bot",
"coin-stat-bot",
"discord-coin-bot",
"discord-coin-stat-bot",
"discord-stat-bot",
"discord-advanced-stat-bot"
],
"maintainers": [
{
"name": "Theark",
"web": "https://github.com/thearkxd"
}
],
"engines": {
"node": "16.x"
},
"scripts": {
"start": "node .",
"start:dev": "nodemon ."
},
"nodemonConfig": {
"delay": 1000,
"watch": [
"src"
],
"ext": "*"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"ark.db": "^2.6.9",
"discord-modals": "^1.3.5",
"discord.js": "^13.0.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^6.2.10",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/thearkxd/discord-advanced-stat-bot.git"
}
],
"licenses": [
{
"name": "MIT",
"url": "https://github.com/thearkxd/discord-advanced-stat-bot/blob/master/LICENSE.md"
}
]
}