-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1 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
{
"name": "deploying_ligo",
"version": "1.0.0",
"description": "A starter kit for Tezos blockchain development using Ligo (ligolang.org)",
"scripts": {
"init": "granary init",
"start": "granary node start &",
"stop": "granary node stop",
"clean": "granary node clean && granary client clean",
"activate-proto-004": "./activate_proto_004.sh",
"reset": "npm run stop && npm run clean && npm run init && npm run start",
"compile" : "./contracts/compile-contract.sh",
"originate": "./originate.sh",
"get-storage": "./get_storage.sh",
"invoke": "./invoke.sh",
"bake": "./bake.sh",
"test": "npm run stop && npm run clean && npm run init && npm run start && npm run activate-proto-004 && ./test.sh"
},
"keywords": [
"tezos",
"blockchain",
"dapp",
"smart",
"contract",
"ligo",
"granary",
"sandbox"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@stove-labs/granary": "^1.0.0-pre-alpha.33"
}
}