forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 926 Bytes
/
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
{
"name": "example-browser-sharing-node-across-tabs",
"description": "Sharing IPFS node across browsing contexts",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rimraf ./dist",
"build": "webpack",
"start": "node server.js",
"test": "test-ipfs-example"
},
"license": "MIT",
"keywords": [],
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.0",
"node-polyfill-webpack-plugin": "^1.0.3",
"rimraf": "^3.0.2",
"test-ipfs-example": "^3.0.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"ipfs": "^0.57.0",
"ipfs-message-port-client": "^0.6.4",
"ipfs-message-port-server": "^0.7.3"
},
"browserslist": [
"last 2 versions and not dead and > 2%"
]
}