2022-06-23 15:36:10 +02:00
|
|
|
{
|
2022-11-25 09:34:58 +05:30
|
|
|
"name": "rln-interep-contracts",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"start": "hardhat node",
|
|
|
|
"compile": "hardhat compile",
|
|
|
|
"test": "hardhat test",
|
|
|
|
"test:localhost": "yarn test --network localhost",
|
|
|
|
"deploy": "hardhat run scripts/deploy.ts --network",
|
|
|
|
"deploy:goerli": "yarn deploy goerli",
|
2022-11-25 10:12:55 +05:30
|
|
|
"deploy:localhost": "yarn deploy localhost",
|
2022-11-25 11:38:38 +05:30
|
|
|
"coverage": "hardhat coverage",
|
2022-11-25 11:39:40 +05:30
|
|
|
"fmt": "prettier --write \"**/*.{js,ts}\"",
|
2022-11-25 12:09:12 +05:30
|
|
|
"lint": "prettier --check \"**/*.{js,ts}\"",
|
|
|
|
"prepare": "husky install"
|
2022-11-25 09:34:58 +05:30
|
|
|
},
|
2022-06-23 15:36:10 +02:00
|
|
|
"devDependencies": {
|
2022-11-24 12:09:44 +05:30
|
|
|
"@interep/contracts": "0.6.0",
|
2022-11-25 11:13:49 +05:30
|
|
|
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
|
2022-06-23 15:52:00 +02:00
|
|
|
"@nomiclabs/hardhat-etherscan": "^3.1.0",
|
|
|
|
"@nomiclabs/hardhat-waffle": "^2.0.3",
|
2022-11-25 11:13:49 +05:30
|
|
|
"@semaphore-protocol/contracts": "2.6.1",
|
2022-06-23 15:57:09 +02:00
|
|
|
"@types/mocha": "^9.1.1",
|
2022-06-23 15:52:00 +02:00
|
|
|
"chai": "^4.3.6",
|
|
|
|
"ethereum-waffle": "^3.4.4",
|
2022-11-25 11:13:49 +05:30
|
|
|
"ethers": "^5.7.2",
|
2022-06-23 15:36:10 +02:00
|
|
|
"hardhat": "^2.9.9",
|
2022-11-25 11:13:49 +05:30
|
|
|
"hardhat-deploy": "0.11.20",
|
2022-06-23 15:52:00 +02:00
|
|
|
"hardhat-gas-reporter": "^1.0.8",
|
2022-11-25 12:09:12 +05:30
|
|
|
"husky": "^8.0.2",
|
|
|
|
"lint-staged": "^13.0.3",
|
2022-11-25 11:38:38 +05:30
|
|
|
"prettier": "^2.8.0",
|
2022-06-23 15:52:00 +02:00
|
|
|
"solidity-coverage": "^0.7.21",
|
|
|
|
"ts-node": "^10.8.1",
|
2022-06-23 15:36:10 +02:00
|
|
|
"typescript": "^4.7.4"
|
2022-06-23 15:52:00 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"dotenv": "^16.0.1"
|
2022-11-25 12:09:12 +05:30
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*": [
|
|
|
|
"prettier --write --ignore-unknown"
|
|
|
|
]
|
2022-06-23 15:36:10 +02:00
|
|
|
}
|
2022-11-25 12:09:12 +05:30
|
|
|
}
|