forked from contentful/cf-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.08 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
78
{
"name": "cf-graphql",
"description": "Generate a GraphQL schema out of your Contentful space",
"version": "0.5.0",
"license": "MIT",
"repository": "contentful-labs/cf-graphql",
"contributors": [
{
"name": "Jakub Elżbieciak",
"email": "[email protected]",
"url": "https://elzbieciak.pl"
},
{
"name": "Michael Elsdörfer",
"email": "[email protected]",
"url": "https://blog.elsdoerfer.name"
},
{
"name": "Frederik Lölhöffel",
"email": "[email protected]",
"url": "https://twitter.com/loewensprung"
},
{
"name": "Stefan Judis",
"email": "[email protected]",
"url": " https://www.stefanjudis.de"
},
{
"name": "Pedro Valentim",
"email": "[email protected]",
"url": "https://github.com/pvalentim"
}
],
"keywords": [
"graphql",
"contentful",
"graph",
"schema",
"cda"
],
"main": "src/index.js",
"scripts": {
"dev": "nodemon dev/server.js",
"dump": "mkdirp dump && npm run dump-graph && npm run dump-schema",
"dump-graph": "graphqlviz http://localhost:4000/graphql | dot -Tpng -o dump/graph.png",
"dump-schema": "fetch-graphql-schema http://localhost:4000/graphql -r -o dump/schema.graphql",
"lint": "eslint 'src/**/*.js' 'test/**/*.js' 'dev/**/*.js'",
"test": "tape 'test/**/*.js'",
"coverage": "istanbul cover tape 'test/**/*.js'"
},
"dependencies": {
"dataloader": "^1.3.0",
"https-proxy-agent": "^2.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.upperfirst": "^4.3.1",
"node-fetch": "^1.7.3",
"pluralize": "^7.0.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"express": "^4.15.4",
"express-graphql": "^0.6.7",
"fetch-graphql-schema": "^0.2.1",
"graphql": "^0.13.0",
"graphqlviz": "^2.0.1",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"nodemon": "^1.12.1",
"proxyquire": "^1.8.0",
"sinon": "^4.0.1",
"tape": "^4.8.0"
},
"peerDependencies": {
"graphql": "^0.11.7 || ^0.13.0"
}
}