forked from keyvan-m-sadeghi/box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "@functionland/server",
"version": "0.1.0",
"description": "Reference implementation of box server in Node.js",
"main": "dist/app.js",
"types": "src",
"scripts": {
"start": "concurrently \"npm:watch\" \"npm:dev-server\"",
"dev-server": "nodemon --watch dist --delay 8",
"build": "node scripts/build.js",
"watch": "concurrently \"npm:watch:*\"",
"watch:build": "onchange \"scripts/**\" \"src/**\" \"../protocols/**\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/functionland/graph.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/functionland/graph/issues"
},
"homepage": "https://github.com/functionland/graph#readme",
"dependencies": {
"@functionland/protocols": "^0.1.0",
"@ipld/dag-json": "^7.0.5",
"ipfs": "^0.55.4",
"ipfs-repo": "^9.1.6",
"it-pipe": "^1.1.0",
"libp2p": "^0.31.5",
"libp2p-bootstrap": "^0.12.2",
"libp2p-mplex": "^0.10.2",
"libp2p-noise": "^2.0.5",
"libp2p-webrtc-direct": "^0.5.1",
"libp2p-webrtc-star": "^0.22.2",
"libp2p-websockets": "^0.15.6",
"multiformats": "^9.4.3",
"openpgp": "^5.0.0-3",
"peer-id": "^0.14.6",
"streaming-iterables": "^6.0.0",
"wrtc": "^0.4.7"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "^1.0.3",
"concurrently": "^6.0.2",
"esbuild": "^0.12.1",
"nodemon": "^2.0.7",
"onchange": "^7.1.0",
"typescript": "^4.2.3"
}
}