-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "usdi-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"setup": "npx yarn install; npx hardhat typechain",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"pretest": "npx hardhat compile",
"test": "npx hardhat test test/index.ts;",
"testMainnet": "npx hardhat test test/mainnetLive/index.ts;",
"testgov": "npx hardhat test test/governance/index.ts",
"testsale": "npx hardhat test test/IPTsale/index.ts",
"testall": "npm run test test/index.ts",
"lint": "bash -c \"shopt -s globstar && shopt -s extglob && npx solhint 'contracts/!(_external)/**/*.sol'\"",
"fmt": "bash -c \"shopt -s globstar && npx prettier --write 'contracts/**/*.sol'\"",
"save-abis": "rm -rf artifacts/contracts/_external && mv artifacts/contracts abis"
},
"author": "",
"license": "ISC",
"dependencies": {
"@certusone/wormhole-sdk": "^0.9.9",
"@defi-wonderland/smock": "^2.3.5",
"@ethersproject/providers": "^5.3.0",
"@ethersproject/wallet": "^5.6.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@prb/math": "^3.1.0",
"@tenderly/hardhat-tenderly": "^2.2.2",
"@typechain/truffle-v5": "^8.0.0",
"@typechain/web3-v1": "^6.0.0",
"@types/lowdb": "^1.0.11",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.1",
"@uniswap/v3-sdk": "^3.9.0",
"axios": "^1.6.7",
"big-number": "^2.0.0",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.0",
"ethereum-multicall": "^2.14.0",
"fs": "0.0.1-security",
"hardhat-console": "^1.0.0",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-watcher": "^2.1.1",
"js-sha256": "^0.9.0",
"keyv": "^4.3.0",
"keyv-file": "^0.2.0",
"lowdb": "1.0.0",
"merkletreejs": "^0.2.31",
"node-json-db": "^1.5.0",
"typescript": "^4.6.3",
"web3": "^1.7.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/jest": "^29.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "12",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.13.0",
"hardhat-docgen": "^1.3.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.3.7",
"ts-node": "^10.7.0",
"typechain": "^8.0.0"
}
}