-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cryptex-contract",
"version": "1.0.0",
"description": "TCAP Vault",
"main": "index.js",
"repository": "[email protected]:cryptexglobal/contracts.git",
"author": "Cryptex Finance",
"license": "MIT",
"scripts": {
"build": "npm run typechain",
"test": "npx hardhat test ",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"typechain": "npx hardhat compile && typechain --outDir typechain --target ethers 'artifacts/*.json'",
"deploy": "npx hardhat deploy",
"verify": "npx hardhat sourcify",
"docgen": "yarn run solidity-docgen --solc-module solc-0.7",
"fbuild": "$HOME/.foundry/bin/forge build --contracts contracts",
"ftest": "./test.sh"
},
"dependencies": {
"@chainlink/contracts": "^0.0.12",
"@defi-wonderland/smock": "^2.0.7",
"@openzeppelin/contracts": "^3.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.11",
"hardhat-tracer": "^1.0.0-alpha.6",
"solc": "0.7.5",
"@arbitrum/nitro-contracts": "1.0.0-beta.8",
"@arbitrum/sdk": "^v3.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/ethereumjs-util": "^6.1.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.14",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^7.0.7",
"ethers": "5.6.1",
"hardhat": "2.7.1",
"hardhat-deploy": "^0.11.19",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"mocha": "^8.1.3",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"pretty-quick": "^3.0.0",
"solc-0.7": "npm:[email protected]",
"solc-0.7.5": "npm:solc@^0.7.5",
"solidity-coverage": "^0.7.5",
"solidity-docgen": "^0.5.11",
"source-map-support": "^0.5.19",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^4.0.1",
"typechain-target-ethers": "^1.0.4",
"typescript": "^4.7.4"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
}
}