-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "apollo-link-sentry",
"version": "4.1.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-cjs/index.js",
"module": "lib-esm/index.js",
"browser": "lib-esm/index.js",
"typings": "lib-esm/index.d.ts",
"files": [
"lib-cjs/**/*",
"lib-esm/**/*"
],
"sideEffects": false,
"keywords": [
"apollo",
"graphql",
"sentry",
"error reporting"
],
"scripts": {
"watch": "tsc-watch --project=tsconfig.json",
"prebuild": "rimraf lib-cjs lib-esm",
"build": "tsc --target esnext --outDir lib-esm && tsc --target es5 --outDir lib-cjs",
"test": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettify": "prettier --write README.md UPGRADE.md LICENSE.md",
"fix": "yarn run lint:fix && yarn run prettify",
"validate": "yarn run lint && yarn run test && yarn run build"
},
"dependencies": {
"deepmerge": "^4.2.2",
"dot-prop": "^6.0.0",
"tslib": "^2.0.3",
"zen-observable-ts": "^1.2.5"
},
"peerDependencies": {
"@apollo/client": "^3.2.3",
"@sentry/core": "^8.33.0",
"graphql": "15 - 16"
},
"devDependencies": {
"@apollo/client": "^3.5.6",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@sentry/browser": "^8.33.0",
"@sentry/core": "^8.33.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^15.8.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.4.5",
"jest-spec-reporter": "^1.0.17",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^20.1.1",
"sentry-testkit": "^5.0.5",
"ts-jest": "^27.1.1",
"tsc-watch": "^4.5.0",
"typescript": "^5.0.0"
},
"volta": {
"node": "18.15.0"
},
"packageManager": "[email protected]"
}