-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 947 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": "nest-queue",
"version": "0.0.0",
"description": "description",
"author": "",
"license": "MIT",
"scripts": {
"server": "nodemon",
"queue": "ts-node -r tsconfig-paths/register src/queue/queue.module.ts"
},
"dependencies": {
"@nestjs/common": "^5.4.0",
"@nestjs/core": "^5.4.0",
"@nestjs/websockets": "^5.4.0",
"@types/amqplib": "^0.5.11",
"@types/bull": "^3.5.11",
"@types/dotenv": "^6.1.1",
"@types/socket.io-redis": "^1.0.25",
"amqplib": "^0.5.3",
"bull": "^3.7.0",
"dotenv": "^7.0.0",
"nestjs-amqp": "^0.1.3",
"pg": "^7.7.1",
"pg-boss": "^3.1.6",
"rxjs": "^6.2.2",
"socket.io-redis": "^5.2.0",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.7.1",
"nodemon": "^1.18.3",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"tslint": "5.11.0"
}
}