-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.33 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
{
"name": "bookie-dev",
"private": true,
"workspaces": ["ui/lib", "ui/app", "ui/applet"],
"scripts": {
"start": "AGENTS=2 npm run network:app",
"start:applet": "AGENTS=2 npm run network:applet",
"network:app": "hc s clean && npm run build:happ && UI_PORT=8888 concurrently -k \"npm run build:watch -w @darksoil/bookie\" \"npm start -w app\" \"npm run launch\" \"holochain-playground\"",
"network:applet": "hc s clean && npm run build:happ && UI_PORT=8888 concurrently -k \"npm run build:watch -w @darksoil/bookie\" \"npm start -w applet\" \"npm run launch\" \"holochain-playground\"",
"package:app": "npm run build:happ && npm run build -w @darksoil/bookie && npm run package -w app",
"package:applet": "npm run build:happ && npm run build -w @darksoil/bookie && npm run package -w applet",
"test": "npm run build:happ && cargo nextest run -j 1",
"launch": "echo \"pass\" | RUST_LOG=warn hc launch --piped -n $AGENTS workdir/bookie.happ --ui-port $UI_PORT network mdns",
"build:happ": "npm run build:zomes && hc app pack workdir --recursive",
"build:zomes": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.0",
"concurrently": "^6.2.1",
"rimraf": "^3.0.2"
},
"engines": {
"npm": ">=7.0.0"
}
}