relayer-registry/package.json

47 lines
1.5 KiB
JSON
Raw Normal View History

2021-08-10 12:48:34 +02:00
{
"name": "project-template",
"version": "1.0.0",
"description": "A template with all preferred configs",
"main": "src/index.js",
"scripts": {
2021-08-11 17:04:24 +02:00
"test": "npx hardhat test",
"compile": "npx hardhat compile",
2021-08-10 12:48:34 +02:00
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peppersec/project-template.git"
},
"author": "peppersec.com <hello@peppersec.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peppersec/project-template/issues"
},
"homepage": "https://github.com/peppersec/project-template#readme",
"dependencies": {
2021-08-11 17:20:37 +02:00
"dotenv": "^10.0.0",
"hardhat-etherscan-abi": "^0.1.1"
2021-08-10 12:48:34 +02:00
},
"devDependencies": {
2021-08-11 17:04:24 +02:00
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0",
2021-08-13 16:06:29 +02:00
"@openzeppelin/contracts-upgradeable": "3.4.1",
2021-08-10 12:48:34 +02:00
"babel-eslint": "^10.1.0",
2021-08-11 17:04:24 +02:00
"chai": "^4.2.0",
2021-08-10 12:48:34 +02:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
2021-08-11 17:04:24 +02:00
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.1.2",
2021-08-10 12:48:34 +02:00
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint-plugin-prettier": "^0.0.5"
}
}