-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"name": "rollup-contracts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "forge build -o out --root ./",
"clean": "forge clean",
"test": "forge test -vvv --root ./",
"gasnap": "forge snapshot",
"format": "prettier --write 'contracts/**/*.sol'",
"fmt": "prettier --write 'contracts/**/*.sol'",
"format-lint": "prettier --list-different 'contracts/**/*.sol'",
"solhint": "solhint 'contracts/**/*.sol'",
"abigen": "bash scripts/abigen.bash",
"go": "bash scripts/build-go.bash"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.6.5",
"hardhat": "^2.8.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6"
},
"dependencies": {
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0"
}
}