-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.36 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
{
"name": "mercurius-apollo-tracing",
"version": "2.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/mercurius-apollo-tracing"
},
"scripts": {
"prepare": "tsc && husky",
"build": "tsc",
"test": "NODE_ENV=test node --test -r ts-node/register src/*.spec.ts",
"lint": "eslint .",
"example": "nodemon --watch './**/*.ts' --exec 'ts-node' ./examples/basic.ts"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"fastify",
"fastify-plugin",
"plugin",
"apollo",
"apollo-tracing",
"tracing",
"graphql",
"mercurius"
],
"peerDependencies": {
"fastify": "5.x",
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"mercurius": ">= 15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@fastify/cors": "^10.0.1",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.17.0",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^5.0.0",
"graphql": "16.x",
"husky": "^9.0.11",
"lint-staged": "^15.0.1",
"mercurius": "^15.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@apollo/utils.usagereporting": "^3.0.0",
"@faker-js/faker": "^9.0.0",
"apollo-reporting-protobuf": "^3.3.2",
"apollo-server-core": "^3.10.0",
"apollo-server-types": "^3.6.2",
"fastify-plugin": "^5.0.1",
"undici": "^6.2.1"
},
"engines": {
"node": ">= 14"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,json,ts,md}": "prettier --write"
},
"contributors": [
"Jiří Špác <[email protected]>",
"Andrew Wood <[email protected]>"
]
}