-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.62 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.62 KB
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": "mewsfeed",
"private": true,
"version": "0.14.0",
"workspaces": [
"ui",
"tests"
],
"scripts": {
"start": "AGENTS=${AGENTS:-2} BOOTSTRAP_PORT=$(get-port) SIGNAL_PORT=$(get-port) npm run network",
"start:tauri": "AGENTS=${AGENTS:-2} BOOTSTRAP_PORT=$(get-port) SIGNAL_PORT=$(get-port) npm run network:tauri",
"start:hwc": "npm run build:happ && concurrently --kill-others \"./deploy/local-dev.sh\" \"npm run start --workspace ui\"",
"start:hwc:joining": "npm run build:happ && concurrently --kill-others \"./deploy/local-dev.sh joining\" \"JOINING_SERVICE_URL=http://localhost:3000/v1 npm run start --workspace ui\"",
"stop:hwc": "./deploy/local-dev.sh stop",
"network": "hc sandbox clean && npm run build:happ && UI_PORT=1420 concurrently \"npm run start --workspace ui\" \"npm run launch:spin\" \"hc playground\"",
"network:tauri": "hc sandbox clean && npm run build:happ && UI_PORT=1420 concurrently \"npm run start --workspace ui\" \"npm run launch:tauri\" \"hc playground\"",
"launch:spin": "hc-spin -n $AGENTS --ui-port $UI_PORT workdir/mewsfeed.happ",
"launch:tauri": "concurrently \"hc run-local-services --bootstrap-port $BOOTSTRAP_PORT --signal-port $SIGNAL_PORT\" \"echo pass | WEBKIT_DISABLE_COMPOSITING_MODE=1 RUST_LOG=warn hc launch --piped -n $AGENTS workdir/mewsfeed.happ --ui-port $UI_PORT network --bootstrap http://127.0.0.1:\"$BOOTSTRAP_PORT\" webrtc ws://127.0.0.1:\"$SIGNAL_PORT\"\"",
"package": "npm run build:happ && npm run package --workspace ui && hc web-app pack workdir --recursive",
"build:happ": "npm run build:zomes && hc app pack workdir --recursive && hc app pack workdir-no-limits --recursive",
"build:zomes": "RUSTFLAGS='--cfg getrandom_backend=\"custom\"' cargo build --release --target wasm32-unknown-unknown",
"test": "npm run build:happ && npm t -w tests",
"lint": "eslint --fix --ext .ts tests --ext .ts ui/src --ext .vue ui/src"
},
"devDependencies": {
"@holochain/hc-spin": "^0.600.2-rc.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"bestzip": "^2.2.1",
"concurrently": "^8.2.2",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"get-port-cli": "github:mattyg/get-port-cli#main",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"run-singleton-cli": "^0.0.7"
},
"engines": {
"npm": ">=7.0.0"
},
"overrides": {
"@shoelace-style/shoelace": "2.11.0"
},
"dependencies": {
"wrangler": "^4.70.0"
}
}