forked from swaap-labs/swaap-proxy-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "@swaap-labs/swaap-proxy-v1",
"version": "1.0.0",
"description": "Swaap Protocol v1: proxy smart contracts",
"license": "GPL-3.0-only",
"contributors": [
"Christian El Dahdah <[email protected]>",
"David Bouba <[email protected]>"
],
"files": [
"contracts/**/*",
"!contracts/test/*",
"!contracts/mock/*"
],
"homepage": "https://swaap.finance",
"keywords": [
"swaap",
"proxy",
"v1"
],
"bugs": {
"url": "https://github.com/swaap-labs/swaap-proxy-v1/issues"
},
"repository": "[email protected]:swaap-labs/swaap-proxy-v1.git",
"scripts": {
"build": "truffle compile",
"testrpc": "ganache --fork.url https://matic-mainnet.chainstacklabs.com --chain.allowUnlimitedContractSize -l 0x4C4B400",
"test": "truffle test --network dev",
"test:verbose": "VERBOSE=true truffle test --network dev",
"coverage": "yarn solidity-coverage",
"lint:contracts": "solhint contracts/**/*.sol",
"deploy:polygon": "truffle migrate --network polygon",
"deploy:rinkeby": "truffle migrate --network rinkeby"
},
"dependencies": {
"@chainlink/contracts": "^0.1.9",
"@swaap-labs/swaap-core-v1": "^1.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@truffle/hdwallet-provider": "1.7.0",
"decimal.js": "^10.2.0",
"dotenv": "^10.0.0",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1",
"web3": "^1.7.3"
}
}