-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
71 lines (71 loc) · 2.07 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
67
68
69
70
71
{
"name": "aeona",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "ts-node-esm src/index.ts",
"start": "tsc && node build/index.js",
"watch": "nodemon --exec ts-node-esm src/index.ts",
"run:lint": "eslint ./src --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@discordx/importer": "^1.3.0",
"@discordx/pagination": "^3.5.0",
"@discordx/utilities": "^5.2.1",
"@gamestdio/leaderboard": "^0.1.7",
"@influxdata/influxdb-client": "^1.33.2",
"@top-gg/sdk": "^3.1.6",
"canvacord": "^5.4.10",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"dbd-soft-ui": "^1.7.15-beta.1",
"discord-dashboard": "^2.3.62",
"discord-gamecord": "^4.4.1",
"discord-html-transcripts": "^3.2.0",
"discord-hybrid-sharding": "github:meister03/discord-hybrid-sharding",
"discord.js": "14.11.0",
"discordx": "^11.9.0",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"figlet": "^1.7.0",
"hmfull": "^2.4.3",
"leo-profanity": "^1.7.0",
"moment": "^2.30.1",
"mongodb-memory-server": "^8.16.0",
"mongoose": "^7.6.8",
"recachegoose": "^9.2.1",
"uniqid": "^5.4.0",
"voucher-code-generator": "^1.3.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.8",
"@types/leo-profanity": "^1.5.3",
"@types/node": "^18.19.10",
"@types/uniqid": "^5.3.4",
"@types/voucher-code-generator": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}