This repository has been archived by the owner on Aug 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
109 lines (109 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "filecoin-retrieval-extension",
"version": "0.2.0",
"description": "A p2p network of Filecoin content retrievers",
"private": true,
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@zondax/filecoin-signing-tools": "^0.12.0",
"autoprefixer": "^9.8.4",
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"browser-util-inspect": "^0.2.0",
"buffer": "^6.0.2",
"cids": "^1.0.2",
"classnames": "^2.2.6",
"interface-datastore": "^2.0.1",
"ipfs-block-service": "^0.18.0",
"ipfs-repo": "^7.0.0",
"ipfs-unixfs-exporter": "^3.0.6",
"ipfs-unixfs-importer": "^4.0.0",
"ipld": "^0.28.0",
"ipld-block": "^0.11.0",
"ipld-dag-cbor": "^0.17.0",
"it-all": "^1.0.4",
"it-last": "^1.0.4",
"it-pushable": "^1.4.0",
"libp2p": "^0.29.3",
"libp2p-gossipsub": "^0.6.4",
"libp2p-mplex": "^0.10.1",
"libp2p-noise": "^2.0.1",
"libp2p-secio": "^0.13.1",
"libp2p-tcp": "^0.15.1",
"libp2p-webrtc-star": "^0.20.1",
"libp2p-websockets": "^0.14.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"mobx": "^6.0.4",
"mobx-react-lite": "^3.1.6",
"multibase": "^3.0.1",
"multicodec": "^2.0.1",
"multihashes": "^3.0.1",
"multihashing-async": "^2.0.1",
"peer-id": "^0.14.2",
"postcss-cli": "^8.2.0",
"pretty-bytes": "^5.4.1",
"react": "^17.0.1",
"react-app-rewire-multiple-entry": "^2.2.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^17.0.1",
"react-dropzone": "^11.2.4",
"react-hook-form": "^6.11.0",
"react-scripts": "4.0.0",
"react-use-localstorage": "^3.5.3",
"socket.io-client": "^2",
"tailwindcss": "^1.9.6",
"wasm-loader": "^1.3.0",
"web-vitals": "^0.2.4",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@types/luxon": "^1.25.0",
"@types/puppeteer": "^5.4.2",
"awesome-typescript-loader": "^5.2.1",
"base64-loader": "^1.0.0",
"cross-env": "^7.0.2",
"file-replace-loader": "^1.3.1",
"jest": "26.6.0",
"jest-environment-node": "^26.6.2",
"npm-watch": "^0.7.0",
"puppeteer": "^5.5.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"e2e": "jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}