-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "gossip-pad",
"version": "0.0.1",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"babel-jest": "^27.4.2",
"jest": "^27.4.3",
"parcel": "^2.0.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^4.1.1",
"@emotion/css": "^11.5.0",
"@types/randomcolor": "^0.5.6",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"emotion": "^11.0.0",
"libp2p": "^0.34.0",
"libp2p-bootstrap": "^0.13.0",
"libp2p-gossipsub": "^0.11.4",
"libp2p-mplex": "^0.10.4",
"libp2p-webrtc-star": "^0.24.0",
"libp2p-websockets": "^0.16.2",
"node-libs-browser": "^2.2.1",
"peer-id": "^0.16.0",
"prismjs": "^1.25.0",
"randomcolor": "^0.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use": "^17.3.1",
"slate": "^0.71.0",
"slate-react": "^0.71.0",
"slate-yjs": "^3.2.0",
"y-libp2p": "0.0.2",
"yaml": "^1.10.2",
"yjs": "^13.5.22"
},
"scripts": {
"dev": "parcel serve www/index.html --open",
"build": "parcel build --dist-dir dist www/index.html",
"publish": "ipfs add -r dist"
}
}