forked from hashgraph/hedera-local-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.49 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@hashgraph/hedera-local",
"version": "2.19.1",
"description": "Developer tooling for running Local Hedera Network (Consensus + Mirror Nodes).",
"main": "index.ts",
"scripts": {
"test:readiness": "node --loader ts-node/esm src/utils/testNode.js",
"build": "rimraf ./build && tsc",
"start": "npm run build && node ./build/index.js start",
"restart": "npm run build && node ./build/index.js restart",
"stop": "npm run build && node ./build/index.js stop",
"generate-accounts": "npm run build && node ./build/index.js generate-accounts",
"test:smoke": "npm --prefix test/smoke run test",
"prepare": "husky install",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pretty": "prettier --write 'src/**/*.ts'",
"precommit": "npm run pretty",
"prepush": "npm run lint",
"prepublishOnly": "npm run build",
"test": "nyc ts-mocha ./test/unit/**/*.spec.ts"
},
"bin": {
"hedera": "./build/index.js"
},
"keywords": [
"hedera",
"hedera-local"
],
"homepage": "https://github.com/hashgraph/hedera-local-node",
"repository": "github.com:hashgraph/hedera-local-node",
"author": "hashgraph",
"license": "Apache-2.0",
"devDependencies": {
"@types/blessed": "^0.1.24",
"@types/chai": "^4.3.11",
"@types/detect-port": "^1.3.5",
"@types/dockerode": "^3.3.21",
"@types/expect": "^24.3.0",
"@types/js-yaml": "^4.0.8",
"@types/mocha": "^10.0.6",
"@types/shelljs": "^0.8.14",
"@types/sinon": "^17.0.3",
"@types/yargs": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.6",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"sinon": "^14.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@hashgraph/sdk": "^2.41.0",
"blessed": "^0.1.81",
"blessed-terminal": "^0.1.22",
"csv-parser": "^3.0.0",
"detect-port": "^1.5.1",
"dockerode": "^4.0.2",
"dotenv": "^16.3.1",
"ethers": "^6.11.1",
"js-yaml": "^4.1.0",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"ts-mocha": "^9.0.0",
"yargs": "^17.7.2"
},
"nyc": {
"check-coverage": false,
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}