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
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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",
"version": "3.4.0",
"description": "SavingsCELO contracts and @celo/contractkit based SDK",
"repository": {
"url": "https://github.com/terminal-fi/savingscelo"
},
"dependencies": {
"@celo/connect": "^1.2.4",
"@celo/contractkit": "^1.2.4",
"bignumber.js": "^9.0.1",
"node-fetch": "^2.6.1",
"web3": "^1.3.6",
"web3-utils": "^1.3.0"
},
"devDependencies": {
"@celo/explorer": "^1.2.4",
"@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.48.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",
"axios": "^0.21.0",
"celo-devchain": "^3.2.1",
"commander": "^7.2.0",
"eth-gas-reporter": "^0.2.22",
"truffle": "^5.4.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",
"deploy": "yarn ts-node ./src/deploy/deployer.ts"
},
"author": "Zviad Metreveli",
"license": "MIT"
}