-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.84 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
{
"name": "herddit-dev",
"private": true,
"workspaces": [
"ui",
"tests"
],
"scripts": {
"start": "AGENTS=2 npm run network",
"start:path": "AGENTS=2 npm run network:path",
"local-services": "hc run-local-services -b 54000 -s 55000",
"network": "hc s clean && npm run build:happ && UI_PORT=8888 concurrently \"npm start -w ui\" \"npm run launch:happ\" \"npm run local-services\"",
"network:path": "hc s clean && npm run build:happ && concurrently \"npm run build:watch -w ui\" \"npm run launch:happ:path\" \"npm run local-services\"",
"launch:happ": "echo \"pass\" | RUST_LOG=warn hc launch --piped -n $AGENTS workdir/herddit.happ --ui-port $UI_PORT network -b http://127.0.0.1:54000 webrtc ws://127.0.0.1:55000",
"launch:happ:path": "echo \"pass\" | RUST_LOG=warn hc launch --piped -n $AGENTS workdir/herddit.happ -w --ui-path ui/dist network -b http://127.0.0.1:54000 webrtc ws://127.0.0.1:55000",
"test": "npm run build:zomes && hc app pack workdir --recursive && npm t -w tests",
"package": "npm run build:happ && npm run package -w ui && hc web-app pack workdir --recursive",
"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",
"playground": "holochain-playground"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"concurrently": "^6.2.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"engines": {
"npm": ">=7.0.0"
}
}