-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
70 lines (70 loc) · 1.56 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
62
63
64
65
66
67
68
69
70
{
"name": "nest-raven",
"version": "10.1.0",
"description": "Sentry Raven Module for Nest Framework",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mentos1386/nest-raven.git"
},
"keywords": [
"nestjs",
"nest",
"raven",
"sentry",
"module"
],
"author": "Tine Jozelj",
"license": "MIT",
"bugs": {
"url": "https://github.com/mentos1386/nest-raven/issues"
},
"homepage": "https://github.com/mentos1386/nest-raven#readme",
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@sentry/node": "*",
"rxjs": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@nestjs/apollo": "^12.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/platform-socket.io": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@nestjs/websockets": "^10.0.0",
"@types/jest": "^29.5.3",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.10",
"dotenv": "^16.3.1",
"husky": "^9.0.0",
"jest": "^29.6.1",
"lint-staged": "15.2.10",
"socket.io-client": "4.8.1",
"supertest": "^7.0.0",
"ts-jest": "29.2.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**"
]
},
"lint-staged": {
"*.ts": [
"biome check"
]
},
"optionalDependencies": {
"@nestjs/graphql": "^11.0.0 || ^12.0.0"
}
}