-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
23 lines (23 loc) · 1.15 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
{
"name": "forum-dev",
"private": true,
"workspaces": ["ui", "tests"],
"scripts": {
"start": "AGENTS=2 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 && npm t -w tests",
"launch:happ": "echo \"pass\" | hc launch --piped -n $AGENTS ./workdir/forum.happ --ui-port $UI_PORT network -b https://bootstrap.holo.host quic -p kitsune-proxy://f3gH2VMkJ4qvZJOXx0ccL_Zo5n-s_CnBjSzAsEHHDCA/kitsune-quic/h/137.184.142.208/p/5788/--",
"build:happ": "npm run build:zomes && hc app pack workdir --recursive",
"build:zomes": "RUSTFLAGS=\"$RUSTFLAGS -A unused-imports -A dead_code -A unused_variables\" CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown --features exercise${EXERCISE}step${STEP}",
"package": "npm run build:happ && npm run package -w ui && hc web-app pack workdir --recursive"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.1",
"concurrently": "^6.2.1",
"rimraf": "^3.0.2"
},
"engines": {
"npm": ">=7.0.0"
},
"type": "module"
}