-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 2.28 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@open-web3/example-guardian",
"version": "0.5.2-0",
"description": "Collection of guardian examples",
"author": "Laminar Developers <hello@laminar.one>",
"license": "Apache-2.0",
"bin": {
"cdp": "scripts/cdp.js",
"collateral-auction": "scripts/collateral-auction.js",
"dex-price": "scripts/dex-price.js",
"laminar-margin-position": "scripts/laminar-margin-position.js",
"laminar-synthetic-liquidation": "scripts/laminar-synthetic-liquidation.js",
"schedule": "scripts/schedule.js",
"staking": "scripts/staking.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/open-web3-stack/guardian.git",
"bugs": {
"url": "https://github.com/open-web3-stack/guardian/issues"
},
"homepage": "https://github.com/open-web3-stack/guardian",
"dependencies": {
"@open-web3/api": "^2.0.1",
"@open-web3/guardian": "0.5.2-0",
"@open-web3/guardian-cli": "0.5.2-0",
"@open-web3/util": "^2.0.1",
"@types/nodemailer": "^6.4.4",
"big.js": "^6.2.1",
"dotenv": "^16.0.1",
"joi": "^17.6.0",
"nodemailer": "^6.7.7",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@types/big.js": "^6.1.5",
"@types/hapi__joi": "^17.1.8",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"scripts": {
"dev:collateral-auction": "ts-node -r dotenv/config --transpile-only src/scripts/collateral-auction.ts dotenv_config_path=.env.auction",
"dev:laminar-synthetic-liquidation": "ts-node -r dotenv/config --transpile-only src/scripts/laminar-synthetic-liquidation.ts dotenv_config_path=.env.laminar-synthetic-liquidation",
"dev:laminar-margin-position": "ts-node -r dotenv/config --transpile-only src/scripts/laminar-margin-position.ts dotenv_config_path=.env.laminar-margin-position",
"dev:cdp": "ts-node -r dotenv/config --transpile-only src/scripts/cdp.ts dotenv_config_path=.env.cdp",
"dev:schedule": "ts-node -r dotenv/config --transpile-only src/scripts/schedule.ts dotenv_config_path=.env.schedule",
"dev:staking": "ts-node -r dotenv/config --transpile-only src/scripts/staking.ts dotenv_config_path=.env.staking",
"dev:dex-price": "ts-node -r dotenv/config --transpile-only src/scripts/dex-price.ts dotenv_config_path=.env.dex-price"
}
}