forked from alex-ppg/fastify-sentry
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.76 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
{
"name": "@zentered/fastify-sentry",
"private": false,
"version": "2.0.0",
"description": "A plugin for attaching the Sentry SDK error handling to Fastify",
"keywords": [
"fastify",
"api",
"sentry",
"error",
"handling"
],
"homepage": "https://github.com/zentered/fastify-sentry#readme",
"bugs": {
"url": "https://github.com/zentered/fastify-sentry/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zentered/fastify-sentry.git"
},
"license": "GPL-3.0-or-later",
"author": "Alex Papageorgiou",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)"
],
"main": "index.js",
"scripts": {
"test": "tap",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"fix:lint": "eslint --fix --ext .js --ignore-path .gitignore .",
"fix:style": "prettier --ignore-path .gitignore --write .",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"eslint --cache --fix",
"npm run test:unit -- --findRelatedTests"
]
},
"dependencies": {
"@sentry/node": "^7.105.0",
"@sentry/tracing": "^7.105.0",
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"eslint": "^8.57.0",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fastify": "^4.26.2",
"fastify-jwt": "^4.2.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"tap": "^18.7.0"
},
"engines": {
"node": ">=14"
},
"release": {
"branches": [
"main"
]
}
}