mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
nikugogoi
ba6b996e65
* Deploy example contract in graph-node * Add auth token in docker build for github packages * Add steps for running tests in CI
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@vulcanize/solidity-mapper",
|
|
"version": "0.1.0",
|
|
"main": "dist/index.js",
|
|
"license": "AGPL-3.0",
|
|
"devDependencies": {
|
|
"@ethersproject/abi": "^5.3.0",
|
|
"@ethersproject/contracts": "^5.3.0",
|
|
"@nomiclabs/hardhat-ethers": "^2.0.2",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.1",
|
|
"@types/chai": "^4.2.18",
|
|
"@types/mocha": "^8.2.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"@vulcanize/ipld-eth-client": "^0.1.0",
|
|
"chai": "^4.3.4",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"ethereum-waffle": "^3.3.0",
|
|
"ethers": "^5.2.0",
|
|
"hardhat": "^2.3.0",
|
|
"typescript": "^4.3.2",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test:init": "cp .env.example .env",
|
|
"test": "hardhat test",
|
|
"build": "tsc",
|
|
"test:geth-rpc": "hardhat --network private test",
|
|
"test:ipld-gql": "IPLD_GQL=true hardhat --network private test"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^10.0.0"
|
|
}
|
|
}
|