-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 961 Bytes
/
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
{
"name": "node-rabbitmq-queue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/app.ts",
"start:docker": "docker-compose up",
"dev": "nodemon --watch './src/**/*.ts' --exec 'ts-node' ./src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"@types/amqplib": "^0.5.13",
"@types/dotenv": "^8.2.0",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^4.17.2",
"@types/node": "^13.1.6",
"@types/redis": "^2.8.14",
"@types/response-time": "^2.3.4",
"amqplib": "^0.5.5",
"axios": "^0.19.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"es6-promisify": "^6.0.2",
"express": "^4.17.1",
"redis": "^2.8.0",
"response-time": "^2.3.2",
"ts-node": "^8.6.1",
"tslib": "^1.10.0",
"typescript": "^3.7.4"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}