-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "distributed-task-scheduler",
"version": "1.0.0",
"description": "Distributed Task scheduler using RabbitMQ",
"main": "build/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"start": "tsc && node build/main.js",
"dev": "tsnd --respawn ./src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/half-blood-prince/rabbit-mq-node-js.git"
},
"author": "Sridhar Subramani",
"license": "ISC",
"bugs": {
"url": "https://github.com/half-blood-prince/rabbit-mq-node-js/issues"
},
"homepage": "https://github.com/half-blood-prince/rabbit-mq-node-js#readme",
"dependencies": {
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.9",
"@types/redis": "^2.8.28",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"amqplib": "^0.10.3",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"redis": "^3.1.2",
"swagger-jsdoc": "^6.0.0-rc.5",
"swagger-ui-express": "^4.1.5",
"typescript": "^4.1.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"ts-node-dev": "^2.0.0"
}
}