-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.93 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
{
"name": "solidity-land-registry",
"description": "Decentralized Land Registry",
"author": "Stichting Block Foundation",
"version": "0.0.1",
"license": "Apache-2.0",
"keywords": [
"blockfoundation",
"blockchain",
"architecture"
],
"homepage": "https://github.com/block-foundation/solidity-land-registry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/block-foundation/solidity-land-registry.git"
},
"bugs": {
"url": "https://github.com/block-foundation/solidity-land-registry/issues"
},
"main": "index.ts",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"deploy-rinkeby": "npx hardhat run scripts/deploy.ts --network rinkeby",
"deploy-mainnet": "npx hardhat run scripts/deploy.ts --network mainnet"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@typechain/ethers-v6": "^0.4.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^22.1.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^9.8.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.6.5",
"hardhat": "^2.17.0",
"prettier": "^3.0.2",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6",
"web3": "^4.0.3",
"webpack": "^5.88.2"
},
"dependencies": {
"@chainlink/contracts": "^1.2.0",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"hardhat-abi-exporter": "^2.10.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"web3-utils": "^4.0.3"
}
}