generated from ipfs-examples/example-fork-go-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
{
"name": "helia-service-worker-gateway",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Bundle Helia with Webpack",
"keywords": [],
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint -c .eslintrc.cjs src/",
"lint:fix": "eslint -c .eslintrc.cjs src/ --fix",
"build": "npm run lint && webpack --env production",
"serve": "webpack serve --mode=development",
"start": "npm run serve",
"test": "npm run build && playwright test tests",
"postinstall": "patch-package"
},
"browser": "./dist/src/index.js",
"browserslist": [
"last 1 Chrome version"
],
"dependencies": {
"@chainsafe/libp2p-noise": "^11.0.0",
"@chainsafe/libp2p-yamux": "^3.0.5",
"@helia/unixfs": "^1.0.2",
"@libp2p/bootstrap": "^6.0.0",
"@libp2p/delegated-content-routing": "^4.0.1",
"@libp2p/delegated-peer-routing": "^4.0.1",
"@libp2p/kad-dht": "^8.0.1",
"@libp2p/mplex": "^7.1.2",
"@libp2p/peer-id": "^2.0.3",
"@libp2p/websockets": "^5.0.3",
"@libp2p/webtransport": "^1.0.7",
"@multiformats/multiaddr": "^12.1.0",
"blockstore-core": "^3.0.0",
"datastore-core": "^8.0.4",
"datastore-level": "^10.0.1",
"debug": "^4.3.4",
"helia": "next",
"kubo-rpc-client": "^3.0.1",
"libp2p": "^0.42.2",
"multiformats": "^11.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"workbox-broadcast-update": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.21.0",
"@playwright/test": "^1.12.3",
"@types/react": "^18.0.28",
"aegir": "^38.1.7",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.2.0",
"dexie": "^3.2.3",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"html-webpack-plugin": "^5.3.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"patch-package": "^6.5.1",
"playwright": "^1.12.3",
"rimraf": "^4.1.2",
"style-loader": "^3.1.0",
"test-util-ipfs-example": "^1.0.2",
"webpack": "^5.45.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}