-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "defi-franc",
"version": "1.0.0",
"description": "",
"main": "hardhat.config.js",
"directories": {
"test": "test"
},
"scripts": {
"hardhat": "hardhat",
"test": "hardhat test --max-memory 4096 ",
"deploy-testnet": "npx hardhat run --network rinkeby mainnetDeployment/rinkebyDeployment.js",
"deploy-local": "npx hardhat run --network localhost mainnetDeployment/localHostDeployment.js",
"deploy-mainnet": "npx hardhat run --network mainnet mainnetDeployment/mainnetRealDeployment.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"decimal.js": "^10.2.0",
"eth-mutants": "^0.1.1",
"ethereumjs-util": "^7.0.9",
"readline-sync": "^1.4.10",
"solc": "^0.6.11",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/hardhat-defender": "^1.8.0",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.0",
"chai-bn": "^0.3.1",
"eth-gas-reporter": "^0.2.22",
"ethers": "^5.5.2",
"hardhat": "^2.6.1",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solidity-coverage": "^0.7.16",
"web3": "^1.3.4"
}
}