-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 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
72
73
{
"name": "@hotline/bot",
"version": "1.0.0",
"description": "Bot for Discord Hotline",
"main": "index.ts",
"scripts": {
"dev": "nodemon",
"lint": "tslint --config tslint.json 'src/**/*.ts'",
"build": "tsc --project tsconfig.json",
"start": "node --max-old-space-size=4096 dist/index.js"
},
"author": "Aaron Scherer <[email protected]>, Arunesh <[email protected]>",
"private": true,
"devDependencies": {
"@secretary/json-file-adapter": "^3.0.1",
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/dotenv": "^8.2.0",
"@types/express": "4.17.14",
"@types/mocha": "10.0.1",
"@types/morgan": "1.9.3",
"@types/mysql": "2.15.21",
"@types/node": "18.11.9",
"@types/node-emoji": "1.8.2",
"@types/nodemon": "1.19.2",
"@types/source-map-support": "0.5.6",
"mocha": "10.1.0",
"nodemon": "2.0.20",
"ts-lint": "^4.5.1",
"ts-node": "10.9.1",
"typescript": "4.9.3"
},
"dependencies": {
"@secretary/aws-secrets-manager-adapter": "^3.0.1",
"@secretary/core": "^3.0.1",
"aws-sdk": "2.1264.0",
"axios": "1.2.0",
"body-parser": "1.20.1",
"compression": "^1.7.4",
"dotenv": "16.0.3",
"eris": "0.17.1",
"eris-command-framework": "^2.5.10",
"express": "4.18.2",
"flatted": "3.2.7",
"hookcord": "^2.0.2",
"inversify": "^5.0.1",
"linqts": "1.14.4",
"millisec": "^0.2.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-emoji": "1.11.0",
"reflect-metadata": "^0.1.13",
"require-context": "^1.1.0",
"source-map-support": "0.5.21",
"transliteration": "2.3.5",
"typeorm": "0.3.10",
"typescript-collections": "^1.3.3",
"winston": "3.8.2",
"yes-no": "0.0.1"
},
"plugins": {
"CorePlugin": "./plugin/core-plugin",
"CommandPlugin": "./plugin/command-plugin"
},
"pluginConfigs": {
"CommandPlugin": {
"applicationId": "305140278480863233",
"memberRoleId": "531617261077790720",
"roleSeparatorId": "204103172682153984",
"hotlineGuildId": "204100839806205953"
}
}
}