fix: missing dependencies
This commit is contained in:
parent
5d7a6144e2
commit
7c7eff7d12
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@embarklabs/subspace",
|
"name": "@embarklabs/subspace",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.embarklabs.io",
|
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.embarklabs.io",
|
||||||
"homepage": "https://subspace.embarklabs.io",
|
"homepage": "https://subspace.embarklabs.io",
|
||||||
"author": "Status Research & Development GMBH",
|
"author": "Status Research & Development GMBH",
|
||||||
|
@ -42,12 +42,15 @@
|
||||||
"web3": "^1.2.1"
|
"web3": "^1.2.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.8.4",
|
||||||
"@babel/runtime-corejs3": "^7.8.4",
|
"@babel/runtime-corejs3": "^7.8.4",
|
||||||
|
"core-js": "^3.6.4",
|
||||||
"fast-deep-equal": "^3.1.1",
|
"fast-deep-equal": "^3.1.1",
|
||||||
"hex2dec": "^1.1.2",
|
"hex2dec": "^1.1.2",
|
||||||
"keccak": "^3.0.0",
|
"keccak": "^3.0.0",
|
||||||
"lokijs": "^1.5.6",
|
"lokijs": "^1.5.6",
|
||||||
"object-hash": "^2.0.1"
|
"object-hash": "^2.0.1",
|
||||||
|
"strip-hex-prefix": "^1.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"rxjs": "^6.5.2",
|
"rxjs": "^6.5.2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@embarklabs/subspace-react",
|
"name": "@embarklabs/subspace-react",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.embarklabs.io",
|
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.embarklabs.io",
|
||||||
"homepage": "https://subspace.embarklabs.io",
|
"homepage": "https://subspace.embarklabs.io",
|
||||||
"author": "Status Research & Development GMBH",
|
"author": "Status Research & Development GMBH",
|
||||||
|
@ -39,6 +39,8 @@
|
||||||
"react": "^16.9.0"
|
"react": "^16.9.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.8.4",
|
||||||
|
"core-js": "^3.6.4",
|
||||||
"@babel/runtime-corejs3": "^7.8.4",
|
"@babel/runtime-corejs3": "^7.8.4",
|
||||||
"@embarklabs/subspace": "^2.0.0"
|
"@embarklabs/subspace": "^2.0.0"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue