-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.05 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
{
"name": "solidity-digital-twin",
"description": "Digital Twin",
"author": "Stichting Block Foundation",
"version": "0.0.1",
"license": "Apache-2.0",
"keywords": [
"blockfoundation",
"block-foundation",
"blockchain",
"architecture",
"real-estate",
"smart-contract",
"ethereum",
"solidity",
"chainlink"
],
"homepage": "https://github.com/block-foundation/solidity-digital-twin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/block-foundation/solidity-digital-twin.git"
},
"bugs": {
"url": "https://github.com/block-foundation/solidity-digital-twin/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": "^2.0.1",
"@typechain/ethers-v6": "^0.4.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.4",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.41.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.6.5",
"hardhat": "^2.17.0",
"prettier": "^2.8.8",
"solhint": "^3.4.1",
"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": "^0.6.1",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"hardhat-abi-exporter": "^2.10.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"web3-utils": "^4.0.3"
}
}