Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
updated packages.jsons
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniuz committed Dec 7, 2018
1 parent a6e03ea commit 6d59c2a
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 33 deletions.
10 changes: 7 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"npmClient": "yarn",
"npmClientArgs": ["--no-lockfile"],
"npmClientArgs": [
"--no-lockfile"
],
"useWorkspaces": true,
"version": "0.0.0"
"version": "0.0.1"
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler"
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>"
],
"keywords": [
"ethereum",
Expand Down
50 changes: 34 additions & 16 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,51 @@
{
"name": "@ethql/base",
"version": "0.0.0",
"main": "dist/index.js",
"version": "0.0.1",
"description": "A GraphQL interface to Ethereum",
"author": "ConsenSys",
"license": "Apache-2.0",
"files": [
"dist"
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ethql"
},
"bugs": {
"url": "https://github.com/ConsenSys/ethql/issues"
},
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>"
],
"keywords": [
"ethereum",
"graphql"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build:ts": "npm run clean && patch-package && tsc -b"
},
"dependencies": {
"lodash": "^4.17.10",
"abi-decoder": "^1.2.0",
"apollo-server": "^2.0.5",
"axios": "^0.18.0",
"get-port": "^4.0.0",
"bluebird": "^3.5.1",
"graphql-tools": "^3.0.2",
"graphlib": "^2.1.5",
"apollo-server": "^2.0.5",
"immutable": "^3.8.2",
"commander": "^2.17.1",
"deepmerge": "^2.1.1",
"abi-decoder": "^1.2.0",
"bn.js": "^4.11.8",
"commander": "^2.17.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"dataloader": "^1.4.0",
"web3": "^1.0.0-beta.35",
"deepmerge": "^2.1.1",
"express": "^4.16.3",
"get-port": "^4.0.0",
"graphlib": "^2.1.5",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"graphql": "^0.13.2"
"graphql-tools": "^3.0.2",
"immutable": "^3.8.2",
"lodash": "^4.17.10",
"web3": "^1.0.0-beta.35"
}
}
32 changes: 27 additions & 5 deletions packages/ens/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,39 @@
{
"name": "@ethql/ens",
"version": "0.0.0",
"version": "0.0.1",
"main": "dist/index.js",
"description": "A GraphQL interface to Ethereum",
"author": "ConsenSys",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ethql"
},
"bugs": {
"url": "https://github.com/ConsenSys/ethql/issues"
},
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>"
],
"keywords": [
"ethereum",
"graphql"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build:ts": "npm run clean && patch-package && tsc -b"
},
"dependencies": {
"@ethql/base": "^0.0.0",
"lodash": "^4.17.10",
"web3": "^1.0.0-beta.35",
"@ethql/base": "^0.0.1",
"ez-ens": "^1.0.4",
"graphql": "^0.13.2",
"ez-ens": "^1.0.4"
"lodash": "^4.17.10",
"web3": "^1.0.0-beta.35"
}
}
28 changes: 25 additions & 3 deletions packages/erc20/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,36 @@
{
"name": "@ethql/erc20",
"version": "0.0.0",
"version": "0.0.1",
"main": "dist/index.js",
"description": "A GraphQL interface to Ethereum",
"author": "ConsenSys",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ethql"
},
"bugs": {
"url": "https://github.com/ConsenSys/ethql/issues"
},
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>"
],
"keywords": [
"ethereum",
"graphql"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build:ts": "npm run clean && patch-package && tsc -b"
},
"dependencies": {
"web3": "^1.0.0-beta.35",
"@ethql/base": "^0.0.0"
"@ethql/base": "^0.0.1",
"web3": "^1.0.0-beta.35"
}
}
33 changes: 28 additions & 5 deletions packages/ethql/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
{
"name": "ethql",
"version": "0.0.0",
"version": "0.0.1",
"description": "A GraphQL interface to Ethereum",
"author": "ConsenSys",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ethql"
},
"bugs": {
"url": "https://github.com/ConsenSys/ethql/issues"
},
"contributors": [
"Raúl Kripalani <[email protected]>",
"Akhila Raju <[email protected]>",
"Jonathan Buhler",
"Evgeniy Filatov <[email protected]>"
],
"keywords": [
"ethereum",
"graphql"
],
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "rimraf dist",
"start": "dotenv -- node dist/index.js",
Expand All @@ -10,10 +33,10 @@
"build:ts": "npm run clean && patch-package && tsc -b"
},
"dependencies": {
"@ethql/base": "^0.0.0",
"web3": "^1.0.0-beta.35",
"@ethql/base": "^0.0.1",
"@ethql/ens": "^0.0.1",
"@ethql/erc20": "^0.0.1",
"lodash": "^4.17.10",
"@ethql/erc20": "^0.0.0",
"@ethql/ens": "^0.0.0"
"web3": "^1.0.0-beta.35"
}
}

0 comments on commit 6d59c2a

Please sign in to comment.