-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.07 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": "slay-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:tokenPrice": "hardhat test ./test/tokenByRoute.ts",
"test:airdrop": "hardhat test ./test/airdrop.spec.ts",
"test:bocoAirdrop": "hardhat test ./test/bocoAirdrop.spec.ts",
"solhint": "solhint -f table contracts/**/*.sol",
"prettier:solidity": "prettier --write contracts/**/*.sol",
"prettier-check": "prettier --check contracts/**/*.sol",
"deploy:local": "hardhat run --network localhost scripts/deploy.ts",
"deploy:testnet": "hardhat run --network localhost scripts/bot.deploy.ts",
"buy": "hardhat run --network localhost scripts/buy.ts",
"transfer": "hardhat run --network localhost scripts/transfer.ts",
"scriptTest": "hardhat run --network bscTestnet scripts/scriptTest.ts",
"tools:local": "hardhat run --network localhost tools/keeper.ts",
"tools:execute": "hardhat run --network localhost tools/keeper.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.22",
"husky": "^8.0.2",
"prettier": "^2.8.0",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier-check"
}
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v3-core": "^1.0.1",
"chai": "^4.3.8",
"dotenv": "^16.0.3",
"ethers": "^5.5.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10"
}
}