-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "pgala-recovery-plan-contracts",
"version": "0.0.1",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"lint": "prettier --config ./.prettierrc --write \"./contracts/**/*.+(sol)\" && solhint ./contracts --fix",
"lint:js": "npx eslint ./",
"format": "prettier --config ./.prettierrc --write \"./**/*.+(js|json)\""
},
"author": "Alessandro Manfredi <[email protected]>",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.4",
"@nomiclabs/hardhat-ethers": "2.0.1",
"@nomiclabs/hardhat-etherscan": "2.1.8",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/hardhat-upgrades": "1.8.2",
"async-retry": "^1.3.3",
"bignumber.js": "^9.1.0",
"chai": "^4.3.0",
"dotenv": "^8.2.0",
"erc1820-ethers-registry": "^1.1.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethers": "^5.0.31",
"hardhat": "2.12.2",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint": "^3.3.6"
},
"dependencies": {
"csv-reader": "^1.0.10"
}
}