This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.69 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
{
"name": "@terminal-fi/savingscelo-with-ube",
"version": "1.6.0",
"description": "SavingsCELO x Ubeswap integration contracts and @celo/contractkit based SDK",
"repository": {
"url": "https://github.com/terminal-fi/savingscelo-with-ube"
},
"dependencies": {
"@celo/connect": "^1.2.4",
"@celo/contractkit": "^1.2.4",
"@terminal-fi/savingscelo": "^3.4.0",
"bignumber.js": "^9.0.1",
"web3": "^1.3.4",
"web3-utils": "^1.3.0"
},
"devDependencies": {
"@celo/governance": "^1.2.4",
"@celo/typechain-target-web3-v1-celo": "^0.1.0-beta3",
"@celo/wallet-ledger": "^1.2.4",
"@ledgerhq/hw-transport-node-hid": "^5.49.0",
"@openzeppelin/contracts": "3.2.0",
"@typechain/truffle-v5": "^3.0.0",
"@typechain/web3-v1": "^1.0.0",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"celo-devchain": "^3.1.1",
"commander": "^7.2.0",
"eth-gas-reporter": "^0.2.22",
"truffle": "^5.1.54",
"truffle-flattener": "^1.5.0",
"truffle-typings": "^1.0.8",
"typechain": "^4.0.0",
"typescript": "^4.0.5"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"compile:contracts": "yarn truffle compile && yarn typechain --target=truffle-v5 'build/contracts/*.json' && yarn ts-node ./src/codegen.ts",
"compile:ts": "yarn tsc -b",
"build": "yarn compile:contracts && yarn compile:ts",
"clean": "rm -rf ./build ./dist ./types",
"test": "./test.sh",
"prepublishOnly": "yarn clean && yarn build",
"devchain": "rm -f ./src/deploy/ganache.*.json && yarn celo-devchain --port 7545",
"deploy": "yarn ts-node ./src/deploy/deployer.ts"
},
"author": "Zviad Metreveli",
"license": "MIT"
}