-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.78 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
{
"name": "list-token",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "hardhat compile --config ./hardhat.config.ts",
"prebuild": "rimraf ./artifacts/ ./cache/ ./typechain-types/",
"test": "hardhat test --config ./hardhat.config.ts",
"profile": "REPORT_GAS=true hardhat test --config ./hardhat.config.ts",
"coverage": "hardhat coverage --config ./hardhat-coverage.config.ts",
"check": "yarn lint:check:prettier",
"lint:check:prettier": "prettier --check **.{sol,ts}",
"lint:check:eslint": "eslint . --ext ts",
"fix": "yarn lint:fix:prettier",
"lint:fix:prettier": "prettier --write **.{sol,ts}",
"lint:fix:eslint": "eslint --fix . --ext ts",
"prepare": "husky"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@ethereum-waffle/mock-contract": "^4.0.4",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.8",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@openzeppelin/hardhat-upgrades": "3.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.54",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^6.10.0",
"golb": "^0.0.9",
"hardhat": "^2.19.5",
"hardhat-forta": "^0.0.3",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.1.6",
"merkletreejs": "^0.3.11",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.1",
"typechain": "^8.3.2",
"typescript": "^4.7.3"
},
"dependencies": {
"@layerzerolabs/lz-definitions": "^2.3.8",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.8",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.8",
"@layerzerolabs/lz-evm-v1-0.7": "^2.3.19",
"@layerzerolabs/toolbox-foundry": "^0.1.5",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"bluebird": "^3.7.2",
"moment": "^2.30.1",
"solidity-bytes-utils": "^0.8.2"
}
}