forked from OpenOrg-gg/AmphoraProtocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.66 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
{
"name": "usda-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/mainnet/index.ts; npx hardhat test test/isolated/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": {
"@ethersproject/providers": "^5.3.0",
"@ethersproject/wallet": "^5.6.2",
"@tenderly/hardhat-tenderly": "1.1.0-beta.8",
"@typechain/truffle-v5": "^8.0.0",
"@typechain/web3-v1": "^6.0.0",
"@types/lowdb": "^1.0.11",
"@uniswap/v3-core": "^1.0.1",
"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.0.5",
"@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/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.12.1",
"hardhat-docgen": "^1.3.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"ts-node": "^10.7.0",
"typechain": "^8.0.0"
}
}