-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 891 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 891 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
{
"name": "@libp2p/http-example-express-server-over-libp2p",
"version": "1.0.0",
"description": "How to serve an express app over libp2p streams",
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"test": "npm run test:node",
"test:node": "test-node-example test/*"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.0",
"@libp2p/http": "^1.0.0",
"@libp2p/http-server": "^1.0.0",
"@libp2p/tcp": "^11.0.4",
"@multiformats/multiaddr": "^13.0.1",
"express": "^5.1.0",
"libp2p": "^3.0.5"
},
"devDependencies": {
"aegir": "^47.0.22",
"test-ipfs-example": "^1.3.3"
},
"private": true,
"type": "module"
}