-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.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
35
36
37
38
{
"name": "yupana-contracts",
"version": "1.0.0",
"description": "Monorepo for Yupana protocol",
"main": "scripts/cli.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/madfish-solutions/yupana-contracts.git"
},
"author": "Illia Likhoshva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/madfish-solutions/yupana-contracts/issues"
},
"homepage": "https://github.com/madfish-solutions/yupana-contracts#readme",
"engines": {
"node": ">=16",
"yarn": ">=1.22.0"
},
"private": true,
"workspaces": [
"price_feed",
"wTez",
"yupana"
],
"scripts": {
"cli": "ts-node ./scripts/cli.ts",
"help": "yarn cli --help",
"start-sandbox": "yarn cli sandbox --up",
"stop-sandbox": "yarn cli sandbox --down",
"migrate": "yarn cli migrate",
"compile-pf": "yarn --cwd price_feed run compile-all",
"compile-y": "yarn --cwd yupana run compile",
"compile-wt": "yarn --cwd wTez run compile",
"compile-all-contracts": "yarn compile-wt && yarn compile-pf && yarn compile-y",
"test": "jest"
}
}