-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1023 Bytes
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
{
"name": "cloudflare-worker-graphql-subscriptions",
"version": "1.0.0",
"description": "Minimal example template for graphql subscriptions with WebSocketPair in Cloudflare Workers.",
"main": "dist/worker.js",
"repository": "https://jfabraxas@github.com/jfabraxas/cloudflare-worker-graphql-subscriptions.git",
"author": "jfa <git@jonathanallenberg.de>",
"keywords": [
"graphql",
"subscriptions",
"websocket",
"websockets",
"cloudflare",
"workers",
"cfw",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "webpack"
},
"devDependencies": {
"@benzene/ws": "^0.7.0",
"@cloudflare/workers-types": "^2.2.2",
"@graphql-tools/schema": "^7.1.5",
"graphql": "^15.5.0",
"graphql-subscriptions": "^1.2.1",
"graphql-tag": "^2.12.4",
"prettier": "^2.3.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"optionalDependencies": {
"@cloudflare/wrangler": "^1.17.0"
}
}