This repository has been archived by the owner on Apr 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "graphql-things",
"version": "0.15.0",
"description": "P2P GraphQL for the Internet of Things",
"main": "dist/index.js",
"repository": "https://github.com/d1plo1d/graphql-things",
"author": "Rob Gilson",
"license": "MIT",
"private": false,
"files": [
"dist/*",
"dist/**/*",
"client.js"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"exclude": [
"@babel/plugin-transform-regenerator",
"@babel/plugin-proposal-async-generator-functions"
]
}
]
]
},
"scripts": {
"watch": "tsc --target ES2017 -w",
"bootstrap": "yarn && yarn build && yarn build-example && yarn create-example-keys",
"create-example-keys": "node -r esm ./scripts/createKeys.js",
"prepublish": "babel src --out-dir dist",
"build-docs": "mmdc -i ./docs/connection-comparison.mmd -o ./docs/dist/connection-comparison.svg -t neutral -b transparent",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-immutablejs": "^0.1.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.20.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-monorepo": "^0.2.0",
"eslint-plugin-react": "^7.11.0",
"esm": "^3.2.25",
"graphql": "^14.4.0",
"jest": "^23.6.0",
"mermaid": "^8.0.0",
"mermaid.cli": "^0.5.1",
"msgpack-lite": "^0.1.26",
"subscriptions-transport-ws": "^0.9.15",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"peerDependencies": {
"graphql": "^14.0.2",
"msgpack-lite": "^0.1.26",
"subscriptions-transport-ws": "^0.9.15"
},
"dependencies": {
"any-promise": "^1.3.0",
"apollo-link-ws": "^1.0.12",
"backo2": "^1.0.2",
"debug": "^4.1.1",
"elliptic": "^6.4.1",
"eventemitter3": "^3.1.0",
"futoin-hkdf": "^1.0.3",
"simple-peer": "^9.4.0",
"symbol-observable": "^1.2.0",
"ws": "^7.0.1"
}
}