-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.6 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
45
46
47
{
"name": "Crossbell-Contracts",
"license": "MIT",
"version": "2.1.1",
"repository": "[email protected]:Crossbell-Box/Crossbell-Contracts.git",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "4.9.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^7.0.0",
"@types/mocha": "^10.0.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.12.7",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.0-alpha.5",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.0",
"ts-node": "^10.9.1",
"typechain": "^5.1.2",
"typescript": "^5.0.0"
},
"scripts": {
"setup": "make clean && make build",
"compile": "npx hardhat clean && npx hardhat compile",
"sync": "make install",
"test": "make foundry-test && npx hardhat test",
"snapshot": "make snapshot",
"lint": "make lint",
"solhint": "make solhint",
"upgradeable": "make upgradeable",
"mythril": "make mythril",
"mythx": "make mythx",
"manticore": "make manticore",
"storage-layout": "make storage-layout",
"remap": "forge remappings > remappings.txt",
"docgen": "make docgen",
"prepare": "husky install"
}
}