-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.51 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
{
"name": "@luxfi/distribution",
"version": "1.0.0",
"license": "BSD-3-Clause",
"dependencies": {
"@nomicfoundation/hardhat-viem": "^2.0.5",
"@openzeppelin/contracts": "^3.4.2",
"@safe-global/safe-contracts": "1.4.1-2",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@wagmi/core": "^2.13.8",
"encoding": "^0.1.13",
"viem": "^2.21.36",
"wagmi": "^2.12.25"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@safe-global/protocol-kit": "^5.0.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"hardhat-gas-reporter": "^2.2.1",
"hardhat-watcher": "^2.5.0",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "5.6.3"
},
"scripts": {
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"chain": "hardhat node --network hardhat --show-stack-traces --hostname 0.0.0.0",
"clean": "hardhat clean && rm -rf artifacts && rm -rf cache && rm -rf types",
"compile": "hardhat compile",
"console": "hardhat console --network localhost",
"console:testnet": "hardhat console --network testnet",
"console:mainnet": "hardhat console --network mainnet",
"console:lux": "hardhat console --network lux",
"deploy": "mkdirp deployments && hardhat deploy --network hardhat --export-all ../app/src/contracts.json",
"deploy:testnet": "mkdirp deployments && hardhat deploy --network testnet --export-all ../app/src/contracts.json",
"deploy:mainnet": "mkdirp deployments && hardhat deploy --network mainnet --export-all ../app/src/contracts.json",
"deploy:lux": "mkdirp deployments && hardhat deploy --network lux --export-all ../app/src/contracts.json",
"format": "prettier . --write",
"generate": "hardhat generate",
"send": "hardhat send",
"test": "hardhat test --network hardhat",
"verify:testnet": "hardhat verify --network testnet"
}
}