-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.73 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
{
"name": "@holochain-open-dev/search-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:agent\"",
"start:agent": "cross-env HC_PORT=$(port) concurrently \"npm run playground\" \"npm run start:happ\" \"npm run start -w @holochain-open-dev/search\"",
"test": "npm run build:happ && cargo t",
"start:happ": "RUST_LOG=warn hc s generate ./workdir/happ/search-test.happ --run=$HC_PORT network --bootstrap https://bootstrap-staging.holo.host/ quic",
"build:happ": "npm run build:dna && hc app pack workdir/happ",
"build:dna": "npm run build:zome && hc dna pack workdir/dna",
"build:zome": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown",
"playground": "run-singleton \"holochain-playground\"",
"docs:setup": "npm run -w @holochain-open-dev/search analyze && cp ui/custom-elements.json docs/_assets/_static",
"docs:start": "npm run docs:setup && rocket start",
"docs:publish": "npm run docs:setup && rocket build && gh-pages --dotfiles -d ./_site -b gh-pages"
},
"devDependencies": {
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@holochain-playground/cli": "^0.0.8",
"@rocket/cli": "^0.10.0",
"@rocket/launch": "^0.6.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-replace": "^3.0.1",
"@scoped-elements/markdown-renderer": "^0.0.3",
"api-viewer-element": "^1.0.0-pre.4",
"concurrently": "^6.2.1",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"new-port-cli": "^1.0.0",
"run-singleton-cli": "^0.0.5"
},
"type": "module"
}