-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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": "subscriptions-transport-sse",
"version": "0.9.2",
"author": "Mike Bild <mike.bild@googlemail.com>",
"license": "MIT",
"homepage": "https://github.com/mikebild/subscriptions-transport-sse#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mikebild/subscriptions-transport-sse.git"
},
"bugs": {
"url": "https://github.com/mikebild/subscriptions-transport-sse/issues"
},
"keywords": [
"graphql",
"subscriptions",
"sse",
"expressjs",
"transport",
"connection"
],
"main": "dist/express.js",
"browser": "dist/client.js",
"files": ["dist", "browser"],
"scripts": {
"build":
"babel src -d dist --source-maps --presets=env --plugins=transform-runtime",
"browser-compile": "webpack --config webpack.config.js",
"dev": "nodemon --watch src --exec \"npm run build\"",
"prepublish": "npm run build && npm run browser-compile"
},
"dependencies": {
"apollo-link": "^1.2.1",
"babel-runtime": "^6.23.0",
"eventsource": "^1.0.5",
"graphql": "^0.11.6",
"graphql-subscriptions": "^0.5.4",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"mocha": "^4.0.1",
"nodemon": "^1.11.0",
"webpack": "^3.6.0"
}
}