This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.92 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
{
"name": "hc-state",
"version": "0.4.0",
"description": "CLI tool for querying holochain over admin port",
"main": "./dist/main.js",
"scripts": {
"build": "webpack --config webpack.config.cjs",
"lint": "standardx --fix",
"hc:run": "concurrently \"hc run-local-services --bootstrap-port $BOOTSTRAP_PORT --signal-port $SIGNAL_PORT\" \"echo pass | RUST_LOG=info hc sandbox --piped -f 8888 generate --app-id my-test-app --num-sandboxes $AGENTS --root ./test --directories test-agent --run 0 $APP_BUNDLE_PATH network webrtc ws://127.0.0.1:\"$SIGNAL_PORT\"\"",
"hc:run-w-setup": "yarn clear:all; AGENTS=1 BOOTSTRAP_PORT=11222 SIGNAL_PORT=11223 APP_BUNDLE_PATH='./test/happs/test.happ' yarn hc:run",
"api:test": "DEBUG_UI=1 mocha --timeout 0 test/index.js",
"clear:all": "hc s clean; yarn clear:agent; yarn clear:bootstrap; yarn clear:signals; yarn clear:adminWs; yarn clear:lair; yarn clear:hc",
"clear:agent": "rm -rf ./test/test-agent",
"clear:lair": "killall lair-keystore",
"clear:hc": "killall holochain",
"clear:adminWs": "kill -9 $(lsof -t -i:8888)",
"clear:bootstrap": "kill -9 $(lsof -t -i:11222)",
"clear:signals": "kill -9 $(lsof -t -i:11223)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holochain/hc-state-cli-node.git"
},
"authors": [
],
"license": "MIT",
"dependencies": {
"@holochain/client": "0.18.0-dev.4",
"blakejs": "^1.1.0",
"commander": "^6.2.0",
"crypto": "^1.0.1",
"fs": "*",
"node-polyfill-webpack-plugin": "^2.0.1",
"request": "^2.88.2",
"tmp": "^0.2.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.0.2",
"bufferutil": "^4.0.1",
"standardx": "^7.0.0",
"utf-8-validate": "^5.0.2",
"webpack": "^5.4.0",
"concurrently": "^8.2.2",
"webpack-cli": "^4.2.0"
}
}