-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (31 loc) · 1.61 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
{
"name": "@holochain-open-dev/file-storage-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 -k \"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 dnas/file_storage_provider/workdir/file-storage-test.happ --ui-port $UI_PORT network -b https://bootstrap.holo.host webrtc wss://signal.holo.host",
"build:happ": "npm run build:zome && hc app pack dnas/file_storage_consumer/workdir --recursive && hc app pack dnas/file_storage_provider/workdir",
"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/file-storage && npm run analyze -w @holochain-open-dev/file-storage"
},
"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",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-beta.33"
},
"type": "module"
}