fix: missing dependencies

This commit is contained in:
Richard Ramos 2020-03-17 14:14:48 -04:00
parent 5d7a6144e2
commit 7c7eff7d12
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"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",
"homepage": "https://subspace.embarklabs.io",
"author": "Status Research & Development GMBH",
@ -42,12 +42,15 @@
"web3": "^1.2.1"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@babel/runtime-corejs3": "^7.8.4",
"core-js": "^3.6.4",
"fast-deep-equal": "^3.1.1",
"hex2dec": "^1.1.2",
"keccak": "^3.0.0",
"lokijs": "^1.5.6",
"object-hash": "^2.0.1"
"object-hash": "^2.0.1",
"strip-hex-prefix": "^1.0.0"
},
"peerDependencies": {
"rxjs": "^6.5.2",

View File

@ -1,6 +1,6 @@
{
"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",
"homepage": "https://subspace.embarklabs.io",
"author": "Status Research & Development GMBH",
@ -39,6 +39,8 @@
"react": "^16.9.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"core-js": "^3.6.4",
"@babel/runtime-corejs3": "^7.8.4",
"@embarklabs/subspace": "^2.0.0"
},