forked from ApeSwapFinance/apeswap-pool-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.28 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
{
"name": "apeswap-pool-factory",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ganache": "npx ganache-cli",
"test": "yarn compile && mocha --exit --recursive",
"test:quick": "mocha --exit --recursive",
"test-ci": "yarn test",
"compile": "truffle compile",
"migrate:testnet": "truffle migrate --network testnet --reset",
"migrate:bsc": "truffle migrate --network bsc --reset",
"verify:testnet": "truffle run verify RewardApeFactory --network testnet && truffle run verify PoolManager --network testnet",
"verify:bsc": "truffle run verify RewardApeFactory --network bsc && truffle run verify PoolManager --network bsc",
"script:gnana": "ts-node ./scripts/querySkimmableFees.ts"
},
"author": "DeFiFoFum",
"license": "ISC",
"devDependencies": {
"@defifofum/multicall": "1.0.4",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.16",
"axios": "^0.24.0",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"truffle": "^5.2.6",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.5.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"ethers": "^5.0.32"
}
}