-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "nestjs-rollbar",
"version": "3.0.0",
"description": "Rollbar Module for NestJS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "tsc -p tsconfig.json",
"test": "jest --config e2e/jest-e2e.json --runInBand"
},
"author": "Anton Larichev <[email protected]>",
"keywords": [
"rollbar",
"typescript",
"nodejs",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/AlariCode/nestjs-rollbar"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlariCode/nestjs-rollbar/issues"
},
"homepage": "https://github.com/AlariCode/nestjs-rollbar",
"dependencies": {
"rollbar": "^2.26.1"
},
"devDependencies": {
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/testing": "^10.0.2",
"@types/jest": "^29.5.1",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0"
}
}