-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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": "apollo-mocked-provider",
"version": "3.3.0",
"description": "Automatically mock GraphQL data with a mocked ApolloProvider",
"author": "Ben Awad",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benawad/apollo-mocked-provider.git"
},
"bugs": {
"url": "https://github.com/benawad/apollo-mocked-provider/issues"
},
"keywords": [
"apollo",
"graphql",
"react",
"react apollo",
"react apollo provider",
"apollo provider",
"mocked apollo provider"
],
"homepage": "https://github.com/benawad/apollo-mocked-provider#readme",
"main": "dist/index.js",
"umd:main": "dist/apollo-mocked-provider.umd.production.js",
"module": "dist/apollo-mocked-provider.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"update-toc": "doctoc README.md"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@testing-library/react": "^11.2.0",
"@types/jest": "^24.0.14",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"doctoc": "^2.0.0",
"husky": "^2.4.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-error-boundary": "^3.0.2",
"semantic-release": "^17.1.2",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"graphql": "^15.3.0",
"graphql-tools": "^6.2.2",
"isomorphic-unfetch": "^3.0.0"
}
}