-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.43 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
{
"name": "notifications_provider-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 @holochain-open-dev/notifications-provider\" \"npm run launch:happ\" \"holochain-playground\"",
"test": "npm run build:happ && hc app pack tests/fixture/workdir --recursive && npm t -w tests",
"launch:happ": "echo \"pass\" | RUST_LOG=warn hc launch --piped -n $AGENTS workdir/notifications_provider.happ --ui-port $UI_PORT network -b https://bootstrap.holo.host webrtc wss://signal.holo.host",
"build:happ": "npm run build:zomes && hc app pack providers/fcm/apps/notifications_provider_fcm_recipient/workdir --recursive && hc app pack providers/fcm/apps/notifications_provider_fcm/workdir --recursive",
"build:zomes": "CARGO_TARGET_DIR=target cargo build --workspace --release --target wasm32-unknown-unknown"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.1",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/web-components": "^7.5.3",
"@storybook/web-components-webpack5": "^7.5.3",
"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.5.3"
},
"engines": {
"npm": ">=7.0.0"
}
}