-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
44
{
"name": "bug-reproduction",
"version": "1.0.0",
"main": "index.js",
"author": "massun-onibakuchi",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"hardhat": "^2.8.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.7",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"ts-node": "^10.4.0",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
},
"scripts": {
"compile": "hardhat compile",
"console": "hardhat console",
"test": "yarn hardhat test",
"typechain": "hardhat typechain",
"chain": "hardhat node",
"deploy": "hardhat deploy",
"lint": "prettier --list-different 'contracts/**/*.sol' && prettier -c 'test/**/*.ts'",
"format:sol": "prettier --write 'contracts/**/*.sol'",
"format:ts": "prettier --write 'test/**/*.ts'",
"format": "yarn format:sol && yarn format:ts"
}
}