This repository was archived by the owner on Sep 24, 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
80 lines (80 loc) · 2.91 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.91 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
{
"name": "@pi-cubed/graphql-proxy-server",
"description": "Add proxy abilities to GraphQL servers",
"version": "0.1.0",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"build": "neutrino build",
"build:watch": "nodemon -w src -x \"yarn build\"",
"clean": "rm -rf _book build server",
"test": "neutrino test",
"test:coverage": "yarn test --coverage",
"test:watch": "nodemon -x \"yarn test:coverage\"",
"dev": "yarn && run-p docs:serve test:watch start:watch",
"build:server": "mkdir -p build && babel src -d server",
"start": "node server/server.js",
"start:watch": "nodemon -w src server/server.js",
"heroku-postbuild": "yarn build: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",
"precommit": "yarn prepublishOnly && pretty-quick --staged",
"prepublishOnly": "run-s clean build test clean build",
"cz": "git-cz"
},
"devDependencies": {
"@neutrinojs/airbnb-base": "^8.2.3",
"@neutrinojs/jest": "^8.2.3",
"@neutrinojs/library": "^8.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.2.0",
"gitbook-cli": "^2.3.2",
"husky": "^0.14.3",
"jsdoc-babel": "^0.4.0",
"jsdoc-to-markdown": "^4.0.1",
"neutrino": "^8.2.3",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.4",
"pretty-quick": "^1.6.0",
"webpack": "4"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"graphql-request": "^1.6.0",
"graphql-yoga": "^1.14.6",
"merge-graphql-schemas": "^1.5.1"
},
"author": "Pi Cubed",
"homepage": "https://github.com/pi-cubed/graphql-proxy",
"repository": "https://github.com/pi-cubed/graphql-proxy",
"keywords": [
"graphql"
],
"bugs": "https://github.com/pi-cubed/graphql-proxy/issues",
"contributors": [
{
"name": "Dylan Richardson",
"email": "dylanrichardson1996@gmail.com",
"url": "https://github.com/drich14"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}