-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1011 Bytes
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
{
"name": "ghost-backend",
"version": "0.1.0",
"description": "Ghost ZK Notary Agent - Backend Canisters",
"private": true,
"scripts": {
"build": "dfx build",
"start": "dfx start --clean --background",
"deploy": "dfx deploy",
"deploy:ic": "dfx deploy --network ic",
"canister:status": "dfx canister status --network ic zk_canister",
"canister:install": "dfx canister install zk_canister --wasm backend/target/wasm32-unknown-unknown/release/zk_canister.wasm --network ic --mode upgrade",
"test": "cargo test --manifest-path backend/Cargo.toml"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@dfinity/agent": "^0.21.0",
"@dfinity/candid": "^0.21.0",
"@dfinity/principal": "^0.21.0"
},
"dependencies": {
"@dfinity/auth-client": "^0.21.0"
},
"keywords": [
"internet-computer",
"ic",
"dfinity",
"canister",
"zero-knowledge-proofs"
],
"author": "Gabriel Rondon",
"license": "MIT"
}