rln-contract/package.json

44 lines
1.3 KiB
JSON
Raw Normal View History

2022-06-23 13:36:10 +00:00
{
"name": "rln-contract",
"license": "(MIT OR Apache-2.0)",
"scripts": {
"start": "hardhat node",
"compile": "hardhat compile",
"test:hardhat": "hardhat test",
"test:hardhat:localhost": "yarn test:hardhat --network localhost",
"test:hardhat:sepolia": "yarn test:hardhat --network sepolia",
"test:foundry": "forge test",
"deploy": "hardhat run scripts/deploy.ts --network",
"deploy:sepolia": "yarn deploy sepolia",
"deploy:localhost": "yarn deploy localhost",
"coverage": "hardhat coverage",
"fmt": "prettier --write \"**/*.{js,ts}\"",
"lint": "prettier --check \"**/*.{js,ts}\"",
"prepare": "husky install"
},
2022-06-23 13:36:10 +00:00
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
2022-06-23 13:52:00 +00:00
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/mocha": "^9.1.1",
2022-06-23 13:52:00 +00:00
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
2022-06-23 13:36:10 +00:00
"hardhat": "^2.9.9",
"hardhat-deploy": "0.11.20",
2022-06-23 13:52:00 +00:00
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
2022-06-23 13:52:00 +00:00
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.1",
2022-06-23 13:36:10 +00:00
"typescript": "^4.7.4"
2022-06-23 13:52:00 +00:00
},
"dependencies": {
"dotenv": "^16.0.1"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
2022-06-23 13:36:10 +00:00
}
}