-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.82 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
{
"name": "calibrator",
"description": "Calibrate swap ratio of UniswapV2 pools",
"license": "AGPL-3.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-waffle": "2.0.5",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.3",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"bignumber.js": "^9.1.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"ds-test": "dapphub/ds-test",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"forge-std": "foundry-rs/forge-std",
"hardhat": "2.14.0",
"hardhat-abi-exporter": "^2.2.1",
"mocha-chai-jest-snapshot": "^1.1.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@gton/ogs-core": "^1.0.1",
"@gton/ogs-periphery": "^1.1.0-beta.1",
"@openzeppelin/contracts": "^4.8.3"
},
"scripts": {
"compile": "hardhat compile",
"deploy:gton:testnet": "hardhat run --network gtonTestnet ./scripts/deploy-gton-testnet.ts",
"coverage": "forge coverage --report lcov && lcov --rc lcov_branch_coverage=1 --remove lcov.info --output-file lcov.info '*libraries*' && genhtml lcov.info --branch-coverage --output-dir coverage-foundry",
"test": "hardhat test && forge test",
"fmt": "prettier --write contracts/**/* test/**/*",
"lint": "solhint contrats/**/*",
"docs": "forge doc",
"test:local:env": "hardhat run --network localhost ./scripts/local.spec.ts"
},
"prettier": {
"semi": false
}
}