-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.54 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
{
"name": "growthdefi-core",
"version": "1.0.0",
"description": "GrowthDeFi core smart contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@openzeppelin/contracts": "3.2.0",
"@truffle/hdwallet-provider": "^1.1.1",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"ganache-cli": "^6.12.0",
"truffle": "^5.1.49",
"truffle-flattener": "^1.5.0",
"web3": "^1.3.0"
},
"scripts": {
"build": "truffle compile",
"deploy": "truffle migrate",
"deploy:testing": "truffle migrate --network testing",
"deploy:mainnet": "truffle migrate --network mainnet",
"deploy:ropsten": "truffle migrate --network ropsten",
"deploy:rinkeby": "truffle migrate --network rinkeby",
"deploy:kovan": "truffle migrate --network kovan",
"deploy:goerli": "truffle migrate --network goerli",
"source": "truffle-flattener contracts/GTokens.sol | sed '/^.*SPDX-License-Identifier:.*$/d' | sed '/^pragma experimental ABIEncoderV2;$/d' | sed '1s/^/\\/\\/ SPDX-License-Identifier: GPL-3.0-only\\npragma experimental ABIEncoderV2;\\n\\n/' > GrowthDeFi.sol",
"test": "truffle test",
"stress-test": "npm run deploy && node stress-test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrowthDeFi/growthdefi-core.git"
},
"author": "raugfer",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/GrowthDeFi/growthdefi-core/issues"
},
"homepage": "https://github.com/GrowthDeFi/growthdefi-core#readme"
}