-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "@hotline/queue",
"version": "1.0.0",
"description": "Queue Consumer for Discord Hotline",
"main": "index.ts",
"scripts": {
"dev": "nodemon",
"lint": "tslint --config tslint.json 'src/**/*.ts'",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js"
},
"author": "Aaron Scherer <[email protected]>, Arunesh <[email protected]>",
"private": true,
"devDependencies": {
"@secretary/json-file-adapter": "^2.0.2",
"@types/amqplib": "^0.5.12",
"@types/dotenv": "^6.1.1",
"@types/node": "^10.14.10",
"@types/source-map-support": "^0.4.2",
"nodemon": "^1.19.1",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"typescript": "^3.5.2"
},
"dependencies": {
"@secretary/aws-secrets-manager-adapter": "^2.0.2",
"@secretary/core": "^2.0.2",
"amqplib": "^0.5.3",
"aws-sdk": "^2.480.0",
"axios": "^0.18.1",
"dotenv": "^6.2.0",
"eris": "^0.9.0",
"flatted": "^2.0.0",
"hookcord": "^2.0.1",
"moment": "^2.24.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.12"
}
}