-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "@quickts/nestjs-amqp",
"version": "1.0.7",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/index.js\"",
"start:debug": "tsc-watch -p tsconfig.build.json --onSuccess \"node --inspect-brk dist/index.js\"",
"start:prod": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quickts/nestjs-amqp.git"
},
"keywords": [
"quickts",
"nestjs",
"amqp",
"nestjs-amqp"
],
"author": "quickts",
"license": "MIT",
"devDependencies": {
"@nestjs/testing": "^6.10.13",
"@nestjs/common": "^6.10.13",
"@nestjs/core": "^6.10.13",
"@nestjs/platform-express": "^6.10.13",
"@types/amqplib": "^0.5.13",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@types/supertest": "^2.0.8",
"amqplib": "^0.5.5",
"jest": "^24.9.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"rxjs": "^6.5.4",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tsc-watch": "^4.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@quickts/nestjs-scanner": "^1.0.4"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/quickts/nestjs-amqp/issues"
},
"homepage": "https://github.com/quickts/nestjs-amqp#readme"
}