forked from DiederikvandenB/apollo-link-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "apollo-link-sentry",
"version": "1.3.0",
"license": "MIT",
"author": "Diederik van den Burger <[email protected]>",
"repository": "https://github.com/DiederikvandenB/apollo-link-sentry.git",
"homepage": "https://github.com/DiederikvandenB/apollo-link-sentry",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"keywords": [
"apollo",
"graphql",
"sentry",
"error reporting"
],
"scripts": {
"watch": "tsc-watch -p ./tsconfig.json",
"prebuild": "rimraf ./lib",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"prerelease": "yarn test && yarn build",
"release": "standard-version",
"deploy": "yarn publish --non-interactive"
},
"dependencies": {
"@sentry/minimal": "^5.15.5",
"@sentry/types": "^5.15.4",
"apollo-link": "^1.2.14",
"deepmerge": "^4.2.2",
"dot-prop": "^5.2.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@sentry/browser": "^5.15.5",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"jest": "^26.0.1",
"jest-spec-reporter": "^1.0.13",
"rimraf": "^3.0.2",
"sentry-testkit": "^3.2.1",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"tsc-watch": "~4.2.8",
"typescript": "^3.9.3"
}
}