-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.86 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.86 KB
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
{
"name": "ft",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rm -rf artifacts cache out",
"compile": "hardhat compile",
"lint": "$npm_execpath run lint:js && $npm_execpath run lint:sol",
"lint:fix": "eslint --fix '**/*.{js,ts,json}' && prettier --write . && solhint 'contracts/**/*.sol' --fix --noPrompt",
"lint:js": "eslint '**/*.{js,ts,json}' && prettier --check .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "hardhat test",
"coverage": "hardhat coverage"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@layerzerolabs/eslint-config-next": "~3.0.132",
"@layerzerolabs/lz-definitions": "^3.0.132",
"@layerzerolabs/lz-evm-messagelib-v2": "^3.0.132",
"@layerzerolabs/lz-evm-protocol-v2": "^3.0.132",
"@layerzerolabs/lz-evm-v1-0.7": "^3.0.132",
"@layerzerolabs/lz-v2-utilities": "^3.0.132",
"@layerzerolabs/metadata-tools": "^3.0.2",
"@layerzerolabs/oapp-evm": "^0.3.2",
"@layerzerolabs/oft-evm": "^3.2.1",
"@layerzerolabs/prettier-config-next": "^3.0.132",
"@layerzerolabs/solhint-config": "^3.0.132",
"@layerzerolabs/test-devtools-evm-hardhat": "^0.5.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.8",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.8",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"@rushstack/eslint-patch": "^1.12.0",
"@safe-global/api-kit": "^4.0.0",
"@safe-global/protocol-kit": "^6.1.1",
"@safe-global/types-kit": "^3.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.10",
"@types/node": "~20.19.4",
"chai": "4",
"concurrently": "~9.2.1",
"dotenv": "^17.2.2",
"eslint": "^9.35.0",
"eslint-plugin-jest-extended": "~3.0.0",
"ethers": "^6.15.0",
"hardhat": "^2.22.17",
"hardhat-abi-exporter": "^2.11.0",
"hardhat-contract-sizer": "^2.10.1",
"hardhat-deploy": "^1.0.4",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-storage-layout": "^0.1.7",
"mocha": "^11.7.2",
"prettier": "^3.6.2",
"solhint": "^6.0.1",
"solidity-bytes-utils": "^0.8.4",
"solidity-coverage": "^0.8.16",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.9.2"
},
"resolutions": {
"ethers": "^6.13.4",
"zksync-ethers": "^6.20.1",
"hardhat-deploy": "^1.0.4"
},
"overrides": {
"ethers": "^6.15.0",
"zksync-ethers": "^6.20.1",
"hardhat-deploy": "^1.0.4"
},
"engines": {
"node": ">=20.19.4"
}
}