50 lines
1.7 KiB
JSON
50 lines
1.7 KiB
JSON
{
|
|
"name": "rln-contract",
|
|
"license": "(MIT OR Apache-2.0)",
|
|
"scripts": {
|
|
"start": "hardhat node --export-all deployments/allDeployments.json",
|
|
"compile": "hardhat compile",
|
|
"test": "yarn test:foundry && yarn test:hardhat",
|
|
"test:verbose": "yarn test:foundry -vvv && yarn test:hardhat --verbose",
|
|
"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 deploy --export-all deployments/allDeployments.json --network",
|
|
"deploy:sepolia": "yarn deploy sepolia",
|
|
"deploy:localhost": "yarn deploy localhost",
|
|
"verify:sepolia": "hardhat --network sepolia etherscan-verify",
|
|
"coverage": "forge coverage --report lcov",
|
|
"fmt": "prettier --write \"**/*.{js,ts}\"",
|
|
"lint": "prettier --check \"**/*.{js,ts}\"",
|
|
"prepare": "husky install"
|
|
},
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-foundry": "^1.0.0",
|
|
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
|
|
"@nomiclabs/hardhat-etherscan": "^3.1.7",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.3",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^16.11.6",
|
|
"chai": "^4.3.6",
|
|
"ethereum-waffle": "^3.4.4",
|
|
"ethers": "^5.7.2",
|
|
"hardhat": "^2.9.9",
|
|
"hardhat-deploy": "0.11.20",
|
|
"hardhat-gas-reporter": "^1.0.8",
|
|
"husky": "^8.0.2",
|
|
"lint-staged": "^13.0.3",
|
|
"ts-node": "^10.8.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.1"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": [
|
|
"prettier --write --ignore-unknown"
|
|
]
|
|
}
|
|
}
|