-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.11 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.11 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
{
"scripts": {
"prepare": "husky",
"logic:build": "bash ./logic/build.sh",
"logic:clean": "rm -rf ./logic/target ./logic/res",
"logic:sync": "bash ./scripts/sync-wasm.sh",
"logic:watch": "chokidar \"logic/res/**/*\" -c \"node scripts/on-res-change.mjs {path}\"",
"app:install": "pnpm --dir app install",
"app:dev": "concurrently -n web,res -c green,magenta \"pnpm --dir app dev\" \"pnpm run logic:watch\"",
"app:build": "pnpm --dir app build",
"app:preview": "pnpm --dir app preview",
"app:generate-client": "npx @calimero-network/abi-codegen@0.1.1 -i logic/res/abi.json -o app/src/api ",
"network:bootstrap": "npx @calimero-network/merobox-js@latest bootstrap run workflows/workflow-example.yml"
},
"devDependencies": {
"@calimero-network/merobox-js": "^0.0.3",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"husky": "^9.0.11"
},
"dependencies": {
"@calimero-network/mero-icons": "^0.0.4",
"@calimero-network/mero-ui": "^0.3.4",
"@iexec/dataprotector": "2.0.0-beta.20",
"@iexec/dataprotector-deserializer": "^0.1.1"
},
"name": "priscilla"
}