rln-contract/package.json

54 lines
1.8 KiB
JSON
Raw Normal View History

2022-06-23 13:36:10 +00:00
{
"name": "rln-contract",
"license": "(MIT OR Apache-2.0)",
"scripts": {
2023-03-29 07:13:14 +00:00
"start": "hardhat node --export-all deployments/allDeployments.json",
"compile": "hardhat compile",
2023-03-29 06:58:42 +00:00
"test": "yarn test:foundry && yarn test:hardhat",
2023-03-29 12:21:48 +00:00
"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",
2023-03-29 07:13:14 +00:00
"deploy": "hardhat deploy --export-all deployments/allDeployments.json --network",
"deploy:sepolia": "yarn deploy sepolia",
"deploy:polygon_zkevm_testnet": "yarn deploy polygonZkevmTestnet",
"deploy:localhost": "yarn deploy localhost",
2023-03-29 06:58:42 +00:00
"verify:sepolia": "hardhat --network sepolia etherscan-verify",
2023-03-29 08:47:14 +00:00
"coverage": "forge coverage --report lcov",
"fmt": "prettier --write \"**/*.{js,ts}\"",
"lint": "prettier --check \"**/*.{js,ts}\"",
2023-03-30 06:51:48 +00:00
"prepare": "husky install",
"docgen": "hardhat docgen"
},
2022-06-23 13:36:10 +00:00
"devDependencies": {
2023-03-29 06:58:42 +00:00
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
2023-03-29 06:58:42 +00:00
"@nomiclabs/hardhat-etherscan": "^3.1.7",
2022-06-23 13:52:00 +00:00
"@nomiclabs/hardhat-waffle": "^2.0.3",
2023-03-29 07:15:56 +00:00
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
2023-03-29 06:58:42 +00:00
"@types/node": "^16.11.6",
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",
2023-11-30 10:54:56 +00:00
"solidity-docgen": "0.6.0-beta.35",
2022-06-23 13:52:00 +00:00
"ts-node": "^10.8.1",
2023-11-30 10:54:56 +00:00
"typescript": "^4.7.4"
2022-06-23 13:52:00 +00:00
},
"dependencies": {
2023-11-30 10:54:56 +00:00
"@zk-kit/imt.sol": "^2.0.0-beta",
2022-06-23 13:52:00 +00:00
"dotenv": "^16.0.1"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
2022-06-23 13:36:10 +00:00
}
2023-03-29 07:13:14 +00:00
}