-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
66 lines (66 loc) · 2.43 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": "gravita",
"version": "1.0.0",
"description": "",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"hardhat": "hardhat",
"test": "hardhat test --max-memory 4096 --show-stack-traces",
"deploy-core-arbitrum": "npx hardhat deploy-core-arbitrum --network arbitrum --show-stack-traces",
"deploy-core-arbitrum-goerli": "npx hardhat deploy-core-arbitrum-goerli --network arbitrum_goerli --show-stack-traces",
"deploy-core-linea": "npx hardhat deploy-core-linea --network linea --show-stack-traces",
"deploy-core-localhost": "npx hardhat deploy-core-localhost --network localhost --show-stack-traces",
"deploy-core-mainnet": "npx hardhat deploy-core-mainnet --network mainnet --show-stack-traces",
"deploy-core-mantle": "npx hardhat deploy-core-mantle --network mantle --show-stack-traces",
"deploy-core-optimism": "npx hardhat deploy-core-optimism --network optimism --show-stack-traces",
"deploy-core-polygon-zkevm": "npx hardhat deploy-core-polygon-zkevm --network polygonZkEvm --show-stack-traces"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.2.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"dotenv": "^16.0.3",
"solc": "^0.6.12"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomicfoundation/hardhat-verify": "1.1.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.25.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"chai": "^4.3.7",
"decimal.js": "^10.4.3",
"eth-gas-reporter": "^0.2.25",
"eth-permit": "^0.2.3",
"ethereumjs-util": "^7.1.5",
"ethers": "5.7.2",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"readline-sync": "^1.4.10",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.1.3",
"web3": "^1.9.0"
}
}