This repository was archived by the owner on Dec 18, 2023. It is now read-only.
forked from terminal-fi/swappa
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
{
"name": "@mobius-money/swappa",
"version": "1.1.1",
"repository": {
"url": "https://github.com/mobiusAMM/swappa"
},
"dependencies": {
"@celo/connect": "^1.2.4",
"@celo/contractkit": "^1.2.4",
"@terminal-fi/savingscelo": "^3.4.0",
"@ubeswap/default-token-list": "^4.0.11",
"bignumber.js": "^9.0.1",
"tiny-invariant": "^1.2.0",
"tiny-warning": "^1.0.3",
"web3": "^1.3.4",
"web3-utils": "^1.3.0"
},
"devDependencies": {
"@celo/typechain-target-web3-v1-celo": "^0.2.0",
"@openzeppelin/contracts": "3.2.0",
"@typechain/truffle-v5": "^3.0.0",
"@typechain/web3-v1": "^1.0.0",
"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 ./tools/codegen.ts",
"compile:ts": "yarn tsc -b",
"build": "yarn compile:contracts && yarn compile:ts",
"clean": "rm -rf ./build ./dist ./types",
"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",
"genPairs": "ts-node ./src/cli/generatePairs.ts"
},
"author": "Zviad Metreveli",
"license": "MIT"
}