-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "node-red-contrib-graphql-server",
"version": "0.2.1",
"description": "A set of nodes to run a local GraphQL Server in Node-RED",
"scripts": {
"maps": "genmaps --sourceRoot /src/ -o html,js",
"debug": "genmaps --sourceRoot /src/ -o html && node --nolazy --inspect /usr/local/lib/node_modules/node-red/red.js",
"debugnode": "node --nolazy --inspect-brk=9229 /usr/local/lib/node_modules/node-red/red.js",
"start": "node /usr/local/lib/node_modules/node-red/red.js",
"test": "mocha \"test/**/*_spec.js\"",
"lint": "eslint"
},
"dependencies": {
"cors": "2.8.5",
"dataloader": "^2.0.0",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"graphql-mqtt-subscriptions": "^1.2.0",
"graphql-playground-middleware-express": "^1.7.21",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^6.2.2",
"serve-static": "^1.14.1",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0"
},
"engines": {
"node": ">=11.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nileio/node-red-contrib-graphql-server/"
},
"license": "MIT",
"homepage": "https://github.com/nileio/node-red-contrib-graphql-server/",
"bugs": "https://github.com/nileio/node-red-contrib-graphql-server/issues",
"keywords": [
"node-red",
"graphql",
"server",
"http-in"
],
"node-red": {
"nodes": {
"graphql-in": "src/graphql-in/graphql-in.js",
"graphql-out": "src/graphql-out/graphql-out.js",
"graphql-schema": "src/graphql-schema/graphql-schema.js",
"graphql-subscriptionserver": "src/graphql-subscriptionserver/graphql-subscriptionserver.js"
}
},
"author": {
"name": "Neil Lyon-S",
"email": "[email protected]",
"url": "https://github.com/nileio"
}
}