-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "tutorial-graphql-subscriptions-redis",
"version": "0.0.1",
"description": "Working GraphQL server with subscriptions and Redis backing",
"main": "server.js",
"scripts": {
"start": "nodemon ./server.js --exec babel-node"
},
"babel": {
"presets": [
"env"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.17.5"
},
"dependencies": {
"apollo-server-express": "^1.3.2",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.12.3",
"graphql-redis-subscriptions": "^1.4.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.21.0",
"ioredis": "^3.2.2",
"moment": "^2.22.2",
"subscriptions-transport-ws": "^0.9.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikesparr/tutorial-graphql-subscriptions-redis.git"
},
"keywords": [
"graphql",
"subscriptions",
"redis",
"server",
"apollo"
],
"author": "Mike Sparr",
"license": "ISC",
"bugs": {
"url": "https://github.com/mikesparr/tutorial-graphql-subscriptions-redis/issues"
},
"homepage": "https://github.com/mikesparr/tutorial-graphql-subscriptions-redis#readme"
}