forked from localshred/apollo-newrelic-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "apollo-newrelic",
"version": "1.0.0",
"description": "Apollo Server extension library for performing NewRelic transaction traces of graphql requests",
"main": "dist/index.js",
"files": [
"dist/"
],
"author": "Ben Makuh",
"license": "MIT",
"scripts": {
"test": "jest",
"prepublishOnly": "yarn test && yarn build",
"build": "tsc"
},
"dependencies": {
"graphql": "^14.5.8",
"graphql-extensions": "^0.10.7"
},
"peerDependencies": {
"newrelic": "^4.8.0 || 5.x.x || 6.x.x"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/preset-env": "7.7.6",
"@babel/preset-typescript": "7.7.4",
"@types/jest": "24.0.23",
"@types/newrelic": "^5.11.2",
"@types/node": "^11.13.8",
"babel-jest": "24.9.0",
"jest": "^24.9.0",
"newrelic": "^6.2.0",
"prettier": "1.19.1",
"typescript": "3.7.3"
}
}