-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.18 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
{
"name": "nh-mvp",
"version": "1.0.0",
"description": "",
"main": "js/main.js",
"directories": {
"js": "js"
},
"dependencies": {
"@holochain-open-dev/cell-client": "^0.3.3",
"@holochain/client": "^0.3.2",
"vue": "^3.2.26",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"start": "miniserve .",
"fe:build": "webpack-cli --config webpack.config.js",
"go": "npm run fe:build && npm run start",
"fe:build-prod": "webpack-cli --entry ./js/main.js --output-filename index.js --mode production",
"hc:clean": "rm -rf .hc*",
"hc:build": "cargo build -p paperz --release --target wasm32-unknown-unknown && cp $CARGO_TARGET_DIR/wasm32-unknown-unknown/release/paperz.wasm ./happs/paperz",
"hc:pack": "hc dna pack happs/paperz && hc app pack happs/paperz",
"hc:run": "hc sandbox generate happs/paperz && WASM_LOG=debug RUST_LOG=error RUST_BACKTRACE=full hc sandbox -f=9000 run -l -p 9999",
"hc:redo": "npm run hc:build && npm run hc:pack && npm run hc:run",
"hc:mk-sensemaker": "nix build .#social_sensemaker --impure",
"hc:pg": "npx @holochain-playground/cli ws://localhost:9000"
},
"author": "",
"license": "MIT"
}