forked from AngleProtocol/merkl-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 5.46 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "merkl-contracts",
"version": "1.0.0",
"description": "",
"scripts": {
"ci:coverage": "forge coverage --ir-minimum --report lcov && yarn lcov:clean",
"lcov:clean": "lcov --remove lcov.info -o lcov.info 'test/**' 'scripts/**' 'contracts/mock/**' 'contracts/deprecated/**' 'contracts/external/**'",
"lcov:generate-html": "genhtml lcov.info --output=coverage",
"deploy:blast": "hardhat deploy --tags distributionCreator --network blast",
"deploy:taiko": "hardhat deploy --tags distributionCreator --network taiko",
"deploy:moonbeam": "hardhat deploy --tags distributionCreator --network moonbeam",
"deploy:fraxtal": "hardhat deploy --tags distributionCreator --network fraxtal",
"deploy:skale": "hardhat deploy --tags distributionCreator --network skale",
"deploy:celo": "hardhat deploy --tags distributionCreator --network celo",
"deploy:mode": "hardhat deploy --tags distributionCreator --network mode",
"deploy:astar": "hardhat deploy --tags distributionCreator --network astar",
"deploy:astarzkevm": "hardhat deploy --tags distributionCreator --network astarzkevm",
"deploy:sei": "hardhat deploy --tags distributionCreator --network sei",
"deploy:bob": "hardhat deploy --tags distributionCreator --network bob",
"deploy:fork": "FORK=true hardhat node --tags distributionCreator",
"deploy:agla": "hardhat deploy --tags aglaMerkl --network",
"deploy": "hardhat deploy --tags distributionCreator --network",
"etherscan": "hardhat etherscan-verify --network",
"foundry:compile": "forge build --optimize --optimizer-runs 1000",
"foundry:coverage": "forge coverage --ir-minimum --report lcov && yarn lcov:clean && yarn lcov:generate-html",
"foundry:deploy": "forge script --broadcast --verify -vvvv",
"foundry:gas": "forge test --gas-report",
"foundry:run": "docker run -it --rm -v $(pwd):/app -w /app ghcr.io/foundry-rs/foundry sh",
"foundry:setup": "curl -L https://foundry.paradigm.xyz | bash && foundryup && git submodule update --init --recursive",
"foundry:size": "forge build --skip test --sizes",
"foundry:test": "FOUNDRY_PROFILE=dev forge test -vvv",
"hardhat:compile": "hardhat compile",
"hardhat:coverage": "hardhat coverage",
"hardhat:deploy": "hardhat deploy --network linea --tags",
"hardhat:test": "hardhat test",
"check-upgradeability": "hardhat run scripts/checkUpgradeability.ts",
"license": "hardhat prepend-spdx-license",
"node:fork": "FORK=true hardhat node",
"size": "yarn hardhat:compile && hardhat size-contracts",
"lint": "yarn lint:sol && yarn lint:js",
"lint:check": "yarn lint:sol:check && yarn lint:js:check",
"lint:js": "yarn lint:js:check --fix",
"lint:js:check": "eslint --ignore-path .gitignore --max-warnings 30 'test/**/*.{js,ts}' '*.{js,ts}'",
"lint:sol": "yarn lint:sol:check --fix",
"lint:sol:check": "solhint --max-warnings 20 \"contracts/**/*.sol\"",
"prettier": "prettier --ignore-path .gitignore --write '*.{js,ts,sol}'"
},
"keywords": [],
"author": "Angle Core Team",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/AngleProtocol/merkl-contracts/issues"
},
"devDependencies": {
"@angleprotocol/sdk": "2.7.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.5",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-vyper": "^2.0.1",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/contracts-upgradeable": "4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@openzeppelin/test-helpers": "0.5.12",
"@openzeppelin/upgrades-core": "^1.20.0",
"@tenderly/hardhat-tenderly": "1.0.12",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/mocha": "^9.1.1",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-bn": "0.3.0",
"dotenv": "10.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha-no-only": "1.1.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "5.0.0",
"ethers": "^5.7.1",
"hardhat": "^2.19.4",
"hardhat-abi-exporter": "2.2.1",
"hardhat-contract-sizer": "2.0.3",
"hardhat-deploy": "^0.11.23",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-spdx-license-identifier": "2.0.3",
"merkletreejs": "0.2.32",
"mocha": "^9.2.1",
"prettier": "^2.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.5.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "10.1.0",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.4",
"fs-extra": "^10.0.0",
"moment": "^2.29.4",
"solc": "0.8.12",
"yargs": "^17.5.1"
}
}