-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "lz-collect-module",
"version": "0.0.1",
"author": "hyplabs",
"license": "MIT",
"keywords": [
"soulbound",
"layerzero",
"lens",
"solidity"
],
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"compile": "npx hardhat compile",
"test": "REPORT_GAS=true npx hardhat test",
"quick-test": "npx hardhat test",
"coverage": "npx hardhat clean && npx hardhat compile && npx hardhat coverage",
"size": "yarn run hardhat size-contracts --no-compile",
"etherscan:verify": "npx hardhat verify --network mumbai 0x0",
"t:push": "npx hardhat tenderly:push OmniSBT=0x1a255753a44EEedbf6d3Afe65A8F006F8C513b0C --network mumbai"
},
"dependencies": {
"@aave/lens-protocol": "^1.0.2",
"@openzeppelin/contracts": "^4.3.2",
"@rari-capital/solmate": "^6.4.0",
"@tenderly/hardhat-tenderly": "^1.1.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.4.7",
"hardhat": "^2.9.9",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-log-remover": "^2.0.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.0",
"typechain": "^8.0.0",
"typescript": "^4.7.2"
}
}