-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "lz-examples",
"version": "0.0.1",
"author": "hyplabs",
"license": "MIT",
"keywords": [
"layerzero",
"solidity",
"onft"
],
"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",
"etherscan:verify": "npx hardhat verify --network mumbai 0x0"
},
"dependencies": {
"@layerzerolabs/solidity-examples": "^0.0.8",
"@rari-capital/solmate": "^6.4.0"
},
"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-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-log-remover": "^2.0.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"ts-node": "^10.8.0",
"typechain": "^8.0.0",
"typescript": "^4.7.2"
}
}