-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 3.45 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "talking-stickies-dev",
"private": true,
"workspaces": [
"libs/ui",
"apps/*/ui"
],
"scripts": {
"launch:ts": "npm run build:ts && npm run launch:happ:ts",
"launch:kd": "npm run build:kd && npm run launch:happ:kd",
"launch:happ:ts": "RUST_LOG=warn echo \"pass\" | hc launch --piped -n 2 ./apps/launcher/workdir/talking-stickies.happ -w --ui-path apps/launcher/ui/public network mdns",
"launch:happ:kd": "RUST_LOG=warn echo \"pass\" | hc launch --piped -n 1 ./apps/launcher-kando/workdir/kando.happ -w --ui-path apps/launcher-kando/ui/public network mdns",
"start:ts": "npm run build:ts && npm run start:agent:ts",
"start:kd": "npm run build:kd && npm run start:agent:kd",
"start:playground": "npm run build:happ && npm run start:agent:playground",
"start:agent:ts": "cross-env UI_PORT=5000 APP_PORT=$(port) ADMIN_PORT=$(port) concurrently \"npm run start:happ:ts\" \"npm run dev:watch -w talking-stickies-app\"",
"start:agent:kd": "cross-env UI_PORT=5000 APP_PORT=$(port) ADMIN_PORT=$(port) concurrently \"npm run start:happ:kd\" \"npm run dev:watch -w kando-app\"",
"start:agent:playground": "cross-env UI_PORT=5000 APP_PORT=$(port) ADMIN_PORT=$(port) concurrently \"npm run playground\" \"npm run start:happ\" \"npm run start:ui:watch\"",
"start:agent:multi": "cross-env UI_PORT=$(port) APP_PORT=$(port) ADMIN_PORT=$(port) concurrently \"npm run start:happ\" \"npm run start:ui:watch\"",
"start:ui": "npm run dev -w talking-stickies-app",
"start:ui:watch": "npm run dev:watch -w talking-stickies-app",
"start:happ:ts": "echo \"starting hc instance: $APP_PORT\" && RUST_LOG=warn echo \"pass\" | hc s -f=$ADMIN_PORT --piped generate ./apps/launcher/workdir/talking-stickies.happ --run=$APP_PORT -a talking-stickies$APP_PORT network mdns",
"start:happ:kd": "echo \"starting hc instance: $APP_PORT\" && RUST_LOG=warn echo \"pass\" | hc s -f=$ADMIN_PORT --piped generate ./apps/launcher-kando/workdir/kando.happ --run=$APP_PORT -a kando$APP_PORT network mdns",
"build:ts": "npm run build -w \"@holo-host/boardz\" -w talking-stickies-app",
"build:kd": "npm run build -w \"@holo-host/boardz\" -w kando-app",
"build:applet": "npm run build -w we-applet",
"package:applet:ts": "npm run build -w \"@holo-host/boardz\" -w talking-stickies-we-applet && npm run package -w talking-stickies-we-applet",
"package:applet:kd": "npm run build -w \"@holo-host/boardz\" -w kando-we-applet && npm run package -w kando-we-applet",
"package:launcher:ts": "npm run build -w \"@holo-host/boardz\" -w talking-stickies-app && npm run package -w talking-stickies-app && hc web-app pack ./apps/launcher/workdir",
"package:launcher:kd": "npm run build -w \"@holo-host/boardz\" -w kando-app && npm run package -w kando-app && hc web-app pack ./apps/launcher-kando/workdir",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check-env": "node -e 'console.log(process.env)' | grep npm",
"playground": "run-singleton \"holochain-playground\""
},
"devDependencies": {
"@holochain-playground/cli": "^0.0.11",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"bestzip": "^2.2.0",
"concurrently": "^6.2.1",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"json-parse-better-errors": "^1.0.2",
"new-port-cli": "^1.0.0",
"rimraf": "^3.0.2",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
}
}