This repository was archived by the owner on Oct 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.69 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.69 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@pi-cubed/graphql-proxy-client",
"version": "0.1.1",
"description": "Send proxied actions to arbitrary GraphQL endpoints",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"build:watch": "nodemon -w src -x \"yarn build\"",
"clean": "nwb clean-module && nwb clean-demo",
"demo": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test:coverage --server",
"docs:prepare": "gitbook install && mkdir -p docs",
"docs:api": "jsdoc2md --configure tooling/docs/jsdoc.json --files src/**/*.js > docs/api.md",
"docs:build": "run-s docs:prepare docs:api && gitbook build",
"docs:serve": "yarn docs:build && gitbook serve",
"docs:clean": "rm -rf _book",
"docs:publish": "yarn docs:build && yarn gh-pages -d _book",
"dev": "yarn && run-p docs:serve test:watch demo",
"precommit": "pretty-quick --staged && yarn prepublishOnly",
"prepublishOnly": "run-s clean build test clean build",
"cz": "git-cz"
},
"dependencies": {
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"react-apollo": "^2.1.6"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-link-http": "^1.5.4",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gh-pages": "^1.2.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-search": "^2.2.1",
"husky": "^0.14.3",
"jsdoc-babel": "^0.4.0",
"jsdoc-to-markdown": "^4.0.1",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"nwb": "0.21.x",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"typed-ui": "^0.3.4",
"unfetch": "^3.0.0"
},
"author": "Pi Cubed",
"homepage": "https://github.com/pi-cubed/graphql-proxy-client",
"license": "MIT",
"repository": "https://github.com/pi-cubed/graphql-proxy-client",
"keywords": [
"react-component",
"graphql",
"react",
"ui"
],
"bugs": "https://github.com/pi-cubed/graphql-proxy-client/issues",
"contributors": [
{
"name": "Dylan Richardson",
"email": "dylanrichardson1996@gmail.com",
"url": "https://github.com/drich14"
},
{
"name": "Craig Valenti",
"email": "cvalenti312@gmail.com",
"url": "https://github.com/CrazyCreje"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}