-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.7 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "peer-graphql",
"config": {
"schema": "./schema.project.graphql"
},
"version": "0.0.3",
"description": "GraphQL sourced from peers",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.1",
"@peculiar/webcrypto": "^1.1.3",
"@types/events": "^3.0.0",
"@types/node": "^14.11.10",
"@types/react-relay": "^7.0.17",
"@types/relay-runtime": "^10.0.4",
"@types/simple-peer": "^9.6.1",
"babel-loader": "^8.2.2",
"fast-check": "^2.6.0",
"jest": "^26.6.3",
"react": "^0.0.0-experimental-4ead6b530",
"react-dom": "^0.0.0-experimental-4ead6b530",
"relay-compiler": "^10.1.0",
"relay-compiler-language-typescript": "^13.0.2",
"relay-runtime": "^10.1.2",
"source-map-explorer": "^2.5.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2",
"wrtc": "^0.4.6"
},
"scripts": {
"analyze": "source-map-explorer 'lib/*.js'",
"build": "webpack --mode production && cp ./schema.peergraphql.graphql lib && tsc --declarationMap && tsc --declaration",
"build:check": "tsc --noEmit",
"test": "yarn run build && yarn run relay && yarn run jest -- --watch --detectOpenHandles",
"relay": "relay-compiler --src ./src --schema ./schema.peergraphql.graphql --language typescript --extensions js ts jsx tsx",
"generate": "graphql-codegen --config codegen.yml --schema $npm_package_config_schema"
},
"files": [
"lib"
],
"dependencies": {
"@stablelib/base64": "^1.0.0",
"babel-plugin-relay": "^10.1.2",
"events": "^3.2.0",
"fp-ts": "^2.8.4",
"graphql": "^15.4.0",
"io-ts": "^2.2.11",
"simple-peer": "^9.9.3",
"tweetnacl": "^1.0.3"
},
"peerDependencies": {
"react-relay": "^0.0.0-experimental-0b967d2e",
"relay-runtime": "^10.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urgent/peer-graphql"
},
"keywords": [
"peer-graphql",
"peer",
"graphql",
"p2p"
],
"author": "urgent",
"bugs": {
"url": "https://github.com/urgent/peer-graphql/projects/3"
},
"homepage": "https://github.com/urgent/peer-graphql",
"engines": {
"node": ">= 10.0.0"
},
"resolutions": {
"babel-plugin-relay/babel-plugin-macros": "^2.8.0"
},
"entry point": "lib/index.js",
"bin": {
"peer-graphql": "./generate.js"
}
}