forked from mentos1386/nest-raven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nest-raven",
"version": "8.0.0",
"description": "Sentry Raven Module for Nest Framework",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"format": "prettier \"{example,lib,test}/**/*.ts\" --write",
"lint": "prettier \"{example,lib,test}/**/*.ts\" --check",
"prepublishOnly": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "jest",
"start": "ts-node -r tsconfig-paths/register example/src/main.ts"
},
"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",
"dependencies": {},
"optionalDependencies": {
"@nestjs/graphql": "^8.0.2"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@sentry/minimal": "^6.0.4",
"@sentry/node": "^6.0.4",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@apollo/gateway": "0.44.1",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@nestjs/common": "8.0.11",
"@nestjs/core": "8.0.11",
"@nestjs/platform-express": "8.0.11",
"@nestjs/platform-socket.io": "8.0.11",
"@nestjs/testing": "8.0.11",
"@nestjs/websockets": "8.0.11",
"@sentry/minimal": "6.11.0",
"@sentry/node": "6.11.0",
"@types/jest": "27.0.3",
"@types/node": "16.11.12",
"@types/supertest": "2.0.11",
"apollo-server-express": "2.25.3",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"conventional-changelog-cli": "2.1.1",
"dotenv": "10.0.0",
"graphql": "15.8.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.3.1",
"socket.io-client": "4.2.0",
"supertest": "6.1.6",
"ts-jest": "27.0.7",
"ts-morph": "11.0.3",
"ts-node": "10.2.1",
"tsconfig-paths": "3.11.0",
"typescript": "4.3.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverage": true,
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"collectCoverageFrom": [
"lib/**"
]
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}