-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.58 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
{
"name": "notifications-dev",
"private": true,
"workspaces": [
"ui"
],
"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\" \"npm run launch:happ\" \"holochain-playground\"",
"test": "npm run build:happ && RUSTFLAGS='' cargo nextest run -j 1",
"launch:happ": "echo \"pass\" | RUST_LOG=warn hc launch --piped -n $AGENTS workdir/notifications.happ --ui-port $UI_PORT network mdns",
"build:happ": "npm run build:zomes && hc app pack workdir --recursive",
"build:zomes": "RUSTFLAGS='' 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/notifications && npm run analyze -w @holochain-open-dev/notifications"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.1",
"@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",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"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"
},
"engines": {
"npm": ">=7.0.0"
}
}