-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.41 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.41 KB
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
{
"name": "koru-dev",
"private": true,
"workspaces": [
"ui",
"tests"
],
"scripts": {
"start": "npm run build:happ && npm run start:agent",
"network": "npm run build:happ && concurrently-repeat \"npm run start:happ\"",
"start:agent": "concurrently -k \"npm run start:happ\" \"sleep 5 && npm run start -w ui\"",
"test": "npm run build:happ && npm t -w tests",
"start:happ": "RUST_LOG=warn hc s generate ./workdir/koru.happ network mdns",
"package": "npm run build:happ && npm run package:ui && hc web-app pack workdir",
"package:ui": "npm run build -w ui && cd ui/dist && bestzip ../dist.zip *",
"build:happ": "npm run build:dnas && hc app pack ./workdir",
"build:dnas": "npm run build:zomes && hc dna pack ./dna/workdir",
"build:zomes": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown",
"playground": "holochain-playground",
"run_sbx": "RUST_LOG=warn hc s generate ./workdir/koru.happ --run -n 3 network mdns",
"run_backend": "hc s clean && npm run build:happ && npm run run_sbx"
},
"devDependencies": {
"@holochain-playground/cli": "^0.0.6",
"bestzip": "^2.2.0",
"concurrently": "^6.2.1",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"new-port-cli": "^1.0.0",
"rimraf": "^3.0.2"
},
"engines": {
"npm": ">=7.0.0"
},
"dependencies": {
"npm": "^8.3.0",
"run-singleton": "^1.0.5"
}
}