-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.5 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
{
"name": "@hashgraph/hedera-sourcify",
"version": "0.4.0-SNAPSHOT",
"description": "A Hedera fork of Ethereum Sourcify that provides a Solidity metadata-based re-compilation and source verification tool",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/hedera-sourcify.git"
},
"scripts": {
"test:server": "mocha test/server.test.js --exit",
"test:hedera": "mocha test/hedera.test.js --exit",
"server:patch": "cd sourcify && git apply --verbose ../server.patch",
"server:build": "cd sourcify && npm run build:lerna",
"server:start": "cd sourcify && npm run server:start",
"server:reset-previewnet": "./scripts/hedera-reset.sh previewnet",
"server:reset-testnet": "./scripts/hedera-reset.sh testnet",
"local-node:start": "hedera start --network local --detached"
},
"keywords": [
"ethereum",
"solidity",
"verification",
"bytecode",
"metadata"
],
"author": "Hedera Mirror Node Explorer & Smart Contracts Teams",
"license": "MIT",
"bugs": {
"url": "https://github.com/hashgraph/hedera-sourcify/issues"
},
"homepage": "https://github.com/hashgraph/hedera-sourcify#readme",
"devDependencies": {
"@hashgraph/hedera-local": "^2.25.0",
"@hashgraph/sdk": "^2.43.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"config": "^3.3.11",
"dotenv": "^8.2.0",
"ethers": "^6.6.2",
"ganache": "7.9.0",
"http-status-codes": "^2.1.4",
"mocha": "^9.2.2",
"rimraf": "^3.0.2"
}
}