The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/package.json

57 lines
1.7 KiB

{
"name": "@abacus-network/helloworld",
"version": "0.0.1",
"license": "MIT OR Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"src",
"dist"
],
"scripts": {
"build:sol": "hardhat compile && hardhat typechain",
"build:ts": "tsc",
"build": "npm run build:sol && npm run build:ts",
"test:contracts": "hardhat test test/helloworld.test.ts",
"test:sdk": "",
"test:deploy": "hardhat test test/deploy.test.ts",
"test": "npm run test:contracts && npm run test:sdk && npm run test:deploy",
"prettier": "prettier --write ./contracts ./src ./test",
"coverage": "hardhat coverage"
},
"dependencies": {
"@abacus-network/app": "^0.1.1",
"@abacus-network/sdk": "^0.1.1",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/experimental": "^5.6.0",
"@openzeppelin/contracts-upgradeable": "~4.5.0",
"ethers": "^5.4.7"
},
"devDependencies": {
"@abacus-network/deploy": "^0.1.1",
"@abacus-network/hardhat": "^0.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "~7.0.0",
"@typechain/hardhat": "^2.0.1",
"@types/mocha": "^9.1.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"hardhat": "^2.8.3",
"hardhat-gas-reporter": "^1.0.7",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.14",
"ts-node": "^10.7.0",
"typechain": "^5.0.0",
"typescript": "^4.3.5"
},
"packageManager": "yarn@3.2.0"
}