-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 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
{
"name": "react-apollo-network-status",
"version": "5.2.1",
"description": "Brings information about the global network status from Apollo into React.",
"repository": "[email protected]:molindo/react-apollo-network-status.git",
"author": "Jan Amann <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/src/index.d.ts",
"homepage": "https://github.com/molindo/react-apollo-network-status",
"scripts": {
"lint": "eslint './{src,example}/**/*.{ts,tsx}' && tsc --noEmit",
"test": "jest",
"build": "yarn lint && yarn test && rm -rf dist && yarn build:compile",
"build:compile": "microbundle --format cjs",
"dev": "webpack-dev-server",
"prepublishOnly": "yarn build"
},
"jest": {
"roots": [
"src",
"example"
]
},
"files": [
"dist"
],
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"resolutions": {
"graphql": "14.5.8"
},
"devDependencies": {
"@apollo/client": "3.1.5",
"@babel/cli": "7.6.4",
"@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@testing-library/react": "10.0.2",
"@types/change-emitter": "0.1.2",
"@types/jest": "25.2.1",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"@typescript-eslint/eslint-plugin": "2.4.0",
"@typescript-eslint/parser": "2.4.0",
"babel-eslint": "10.0.3",
"babel-jest": "25.3.0",
"babel-loader": "8.1.0",
"eslint": "6.5.1",
"eslint-config-molindo": "4.0.2",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "1.7.0",
"graphql-tag": "2.10.1",
"html-webpack-plugin": "4.3.0",
"jest": "25.3.0",
"microbundle": "0.11.0",
"prettier": "1.18.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"regenerator-runtime": "0.13.5",
"typescript": "3.7.5",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}