-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.64 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
{
"name": "@rarible/locking",
"version": "0.1.0",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"test": "npx hardhat test",
"compile_foundry": "forge build",
"test_foundry": "forge test",
"deploy": "hardhat deploy:TestERC20 --network goerli",
"deploy-rarimine": "hardhat --network goerli deploy --tags all",
"deploy_goerli": "npx hardhat deploy:Locking --network goerli",
"update-rarimineold-goerli": "npx hardhat update:RariMineOldHardware --network goerli",
"deploy-rarimineold-goerli": "npx hardhat deploy:RariMineOldHardware --network goerli",
"deploy_mainnet": "hardhat deploy:Locking --network mainnet",
"verify_tenderly": "npx hardhat tenderly:verify TestERC20=0xca0867dd0ffe7c31d7ea3dD99f9f55B32739F2c6 --network goerli --verbose",
"verify_etherscan": "npx hardhat verify 0x44Ddcc3667e0b2Dd80E3887Cd7d126c9DD3247E6 --network goerli"
},
"dependencies": {
"@anders-t/ethers-ledger": "^1.0.4",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@nxqbao/eth-signer-trezor": "^1.0.1",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@tenderly/hardhat-tenderly": "^1.6.1",
"@trezor/connect": "^9.1.4",
"@trezor/connect-plugin-ethereum": "^9.0.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/hdkey": "^2.0.2",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.11.43",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-truffle5": "^1.0.1",
"hdkey": "^2.1.0",
"keccak256": "^1.0.6",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.1"
},
"devDependencies": {
"@daonomic/tests-common": "0.2.2",
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@openzeppelin/truffle-upgrades": "^1.8.1",
"@truffle/hdwallet-provider": "1.4.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.2",
"chai": "^4.3.7",
"ethereumjs-util": "6.1.0",
"hardhat": "^2.12.6",
"truffle-assertions": "^0.9.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"web3": "^1.8.2"
},
"publishConfig": {
"access": "public"
}
}