-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "@hotline/api",
"version": "1.0.0",
"description": "API for Discord Hotline",
"main": "index.js",
"author": "Aaron Scherer <[email protected]",
"private": true,
"engines": {
"node": "10.15.3"
},
"scripts": {
"dev": "nodemon",
"lint": "tslint --config tslint.json 'src/**/*.ts'",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js"
},
"dependencies": {
"@secretary/aws-secrets-manager-adapter": "^2.0.2",
"@secretary/core": "^2.0.2",
"@types/node": "^12.0.10",
"amqplib": "^0.5.3",
"amqplib-auto-recovery": "^0.2.0",
"apikeygen": "^1.1.0",
"aws-sdk": "^2.483.0",
"body-parser": "^1.19.0",
"buffer": "^5.2.1",
"class-validator": "^0.9.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"flatted": "^2.0.1",
"axios": "^0.18.1",
"file-type": "^10.10.0",
"gfycat-style-urls": "^1.0.3",
"hookcord": "^2.0.1",
"image-type": "^3.1.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"mime-types": "^2.1.24",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"source-map-support": "^0.5.12",
"typeorm": "^0.2.18",
"winston": "^3.2.1"
},
"devDependencies": {
"@secretary/json-file-adapter": "^2.0.2",
"@types/amqplib": "^0.5.12",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/express": "^4.17.0",
"@types/mime-types": "^2.1.0",
"@types/morgan": "^1.7.35",
"@types/mysql": "^2.15.6",
"@types/request": "^2.48.1",
"@types/source-map-support": "^0.4.2",
"@types/twig": "^1.12.2",
"nodemon": "^1.19.1",
"ts-lint": "^4.5.1",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"typescript": "^3.5.2"
}
}