-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 3.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "truffle-template",
"version": "1.0.0",
"description": "This repository acts as boilerplate code for new truffle projects.",
"license": "GPL-3.0-only",
"main": "index.js",
"scripts": {
"test": "yarn run compile && yarn mocha --exit --timeout 10000 && npm run coverage && rm -rf ./coverage && rm -rf ./coverage.json",
"test:ci": "yarn run compile && yarn mocha --exit --timeout 30000",
"test:fast": "yarn mocha --exit --timeout 30000",
"coverage": "node ./coverage.js",
"size": "truffle run contract-size",
"compile": "truffle compile",
"compile:all": "truffle compile --all",
"gen:types": "truffle compile --all && typechain --target=truffle-v5 'build/contracts/*.json'",
"migrate": "truffle migrate",
"migrate:bsc": "yarn migrate --network bsc",
"migrate:polygon": "yarn migrate --network polygon",
"migrate:bsc-testnet": "yarn migrate --network bsc-testnet",
"migrate:dev": "yarn migrate --network development",
"verify": "truffle run verify VaultApe StrategyMasterChefSingleFactory StrategyMasterApeSingleFactory StrategyKoalaFarmFactory StrategyMasterChefFactory StrategyKoalaChefSingleFactory",
"verify:bsc": "yarn verify --network bsc",
"verify:polygon": "yarn verify --network polygon",
"verify:bsc-testnet": "yarn verify --network bsc-testnet",
"verify:maximizer": "truffle run verify KeeperMaximizerVaultApe BananaVault StrategyMaximizerMasterApe",
"verify:maximizer:bsc": "yarn verify:maximizer --network bsc",
"verify:maximizer:bsc-testnet": "yarn verify:maximizer --network bsc-testnet",
"typecheck": "tsc --noEmit",
"lint": "solhint './contracts/**/*.sol'",
"lint:fix": "solhint './contracts/**/*.sol' --fix",
"prettier:fix": "prettier --write 'contracts/**/*.sol'",
"doc:gen": "npx solidity-docgen --solc-module solc-0.8"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:fix && yarn lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"contributors": [
"ApeGuru (https://github.com/ape-swap)",
"Doublo (https://github.com/Doublo54)",
"DeFiFoFum (https://github.com/DeFiFoFum)"
],
"devDependencies": {
"@apeswap.finance/contracts": "^0.2.0",
"@apeswap.finance/test-helpers": "^0.2.0",
"@chainlink/contracts": "^0.3.1",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@openzeppelin/contracts": "^4.3.0",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.12",
"@truffle/hdwallet-provider": "^1.4.1",
"@typechain/truffle-v5": "^4.0.1",
"chai-bn": "^0.3.1",
"dotenv": "^8.2.0",
"ganache-cli": "^6.12.2",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.8",
"solc-0.8": "npm:[email protected]",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.13",
"truffle": "^5.3.1",
"truffle-contract-size": "^2.0.1",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.9",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
},
"dependencies": {}
}