-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
57 lines (57 loc) · 2.12 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
{
"name": "@hashgraph/smart-contracts",
"version": "0.11.0-SNAPSHOT",
"description": "Hedera Smart Contract Service supporting files",
"files": [
"/contracts/**/*.sol",
"/contracts/**/**/**/*.sol",
"/test/foundry/mocks/**/*.sol",
"/test/foundry/mocks/**/**/**/*.sol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/hedera-smart-contracts.git"
},
"author": "Hedera Smart Contracts Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hashgraph/hedera-smart-contracts/issues"
},
"homepage": "https://github.com/hashgraph/hedera-smart-contracts#readme",
"scripts": {
"forge:build": "forge build",
"forge:test": "forge test",
"forge:coverage": "forge coverage",
"forge:coverage:report": "forge coverage --report lcov",
"forge:coverage:html": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage",
"hh:compile": "hardhat compile",
"hh:test": "hardhat test",
"hedera:start": "npx @hashgraph/hedera-local start --limits=false --dev=true --balance=10000000",
"hedera:stop": "npx @hashgraph/hedera-local stop",
"prepare": "husky install",
"besu:start": "docker run -d -v ./utils/besu-configs:/var/lib/besu/ -p 8540:8545 -p 8541:8546 hyperledger/besu:24.6.0 --config-file=/var/lib/besu/customConfigFile.toml",
"freeze-network-node": "hardhat run scripts/freeze-network-node.js"
},
"devDependencies": {
"@hashgraph/hedera-local": "^2.31.0",
"@hashgraph/sdk": "^2.53.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.1.0",
"hardhat": "^2.22.15",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"hardhat-abi-exporter": "^2.10.1",
"husky": "^9.1.6",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "3.3.3"
},
"dependencies": {
"@nomicfoundation/solidity-analyzer": "^0.1.2",
"bn.js": "^5.2.1",
"dotenv": "^16.4.5",
"elliptic": "^6.6.0",
"mcl-wasm": "^1.4.0"
}
}