forked from CodeCommission/subscriptions-transport-sse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "subscriptions-transport-sse",
"version": "0.9.3",
"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/client.js",
"files": [
"dist",
"browser"
],
"scripts": {
"build": "babel src -d dist --source-maps --presets=@babel/env --plugins=@babel/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",
"test": "karma start"
},
"dependencies": {
"apollo-link": "^1.2.1",
"@babel/runtime": "^7.8.4",
"event-source-polyfill": "^1.0.5",
"graphql": "^14.0.2",
"graphql-subscriptions": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"eventsourcemock": "^2.0.0",
"graphql-tag": "^2.10.1",
"karma": "^4.1.0",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"prettier": "^1.18.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
}
}