-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
53
54
55
56
57
58
59
60
{
"name": "alkemi-earn-protocol",
"version": "1.5.0",
"description": "Alkemi Earn Protocol",
"homepage": "https://docs.alkemi.network/earn-contracts",
"main": "index.js",
"directories": {
"test": "test",
"docs": "docs"
},
"author": "Preethi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlkemiNetwork/alkemi-earn-protocol/issues"
},
"keywords": [
"Alkemi",
"DeFi",
"Lending",
"Solidity"
],
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/project-alkemi/alkemi-earn-protocol"
},
"scripts": {
"ganache": "ganache-cli --port 8545 --allowUnlimitedContractSize",
"ganache-ci": "ganache-cli --port 8545 --allowUnlimitedContractSize > /dev/null &",
"compile": "truffle compile --all && cd scripts && node create_ABI_files.js && cd ..",
"deploy": "truffle deploy",
"migrate:development": "truffle migrate --network development",
"migrate:rinkeby": "truffle migrate --network rinkeby",
"migrate:kovan": "truffle migrate --network kovan",
"migrate:mainnet": "truffle migrate --network mainnet",
"coverage": "./scripts/coverage",
"lint": "./scripts/lint",
"test": "./scripts/test",
"generate:doc": "truffle compile && solidoc ./ ./docs true"
},
"dependencies": {
"@chainlink/contracts": "0.0.8",
"@openzeppelin/truffle-upgrades": "^1.2.2",
"solidoc": "^1.0.5",
"truffle": "^5.5.3",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1",
"truffle-flattener": "^1.5.0",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"bignumber.js": "^7.2.1",
"ganache-cli": "^6.7.0",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"seamless-immutable": "^7.1.3",
"solc": "^0.4.24",
"solidity-coverage": "^0.5.4",
"web3": "^1.0.0-beta.34"
}
}