-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.7 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
{
"name": "@holochain-open-dev/peer-status-dev",
"private": true,
"workspaces": ["ui"],
"scripts": {
"start": "AGENTS=2 BOOTSTRAP_PORT=$(port) SIGNAL_PORT=$(port) npm run network",
"network": "hc s clean && npm run build:happ && UI_PORT=8888 concurrently \"npm start -w ui\" \"npm run launch:happ\" \"holochain-playground\"",
"test": "npm run build:happ && cargo nextest run -j 1",
"launch:happ": "concurrently \"hc run-local-services --bootstrap-port $BOOTSTRAP_PORT --signal-port $SIGNAL_PORT\" \"echo pass | RUST_LOG=warn hc launch --piped -n $AGENTS ./workdir/happ/status-test.happ --ui-port $UI_PORT network -b http://127.0.0.1:\"$BOOTSTRAP_PORT\" webrtc ws://127.0.0.1:\"$SIGNAL_PORT\"\"",
"build:happ": "npm run build:zome && hc app pack workdir/happ --recursive",
"build:zome": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown",
"docs:start": "npm run docs:setup && storybook dev -p 6006",
"docs:publish": "npm run docs:setup && storybook build && gh-pages -d ./storybook-static -b gh-pages",
"docs:setup": "npm run build -w @holochain-open-dev/peer-status && npm run analyze -w @holochain-open-dev/peer-status"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.0",
"@storybook/addon-essentials": "^7.0.0-beta.33",
"@storybook/addon-links": "^7.0.0-beta.33",
"@storybook/blocks": "^7.0.0-beta.33",
"@storybook/web-components": "^7.0.0-beta.33",
"@storybook/web-components-webpack5": "^7.0.0-beta.33",
"concurrently": "^6.2.1",
"gh-pages": "^3.2.3",
"lit-html": "^2.6.1",
"new-port-cli": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-beta.33"
},
"type": "module"
}