-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
25 lines (25 loc) · 928 Bytes
/
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
{
"scripts": {
"dfx_install": "DFX_VERSION=0.14.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\"",
"replica_start": "dfx start --background",
"replica_stop": "dfx stop",
"canister_deploy_local": "dfx deploy note_taking",
"canister_deploy_mainnet": "dfx deploy --network ic note_taking",
"canister_uninstall": "dfx canister uninstall-code note_taking",
"canister_call_get_message": "dfx canister call note_taking getMessage",
"canister_call_set_message": "dfx canister call note_taking setMessage '(\"Hello world!\")'"
},
"dependencies": {
"@dfinity/agent": "^0.18.0",
"@dfinity/candid": "^0.15.6",
"@dfinity/principal": "^0.18.1",
"azle": "^0.16.3",
"uuid": "^9.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/uuid": "^9.0.1"
}
}