forked from TacBuild/dapps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 2.91 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 2.91 KB
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
{
"name": "scripts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deposit-tac": "npx hardhat run scripts/common/depositTAC.ts",
"deploy-stton:localhost": "npx hardhat run --network localhost scripts/common/deployStTON.ts",
"deploy-tac:localhost": "npx hardhat run --network localhost scripts/common/deployTAC.ts",
"uniswap-deploy:localhost": "npx hardhat run --network localhost scripts/UniswapV2/deploy.ts",
"uniswap-addliq:localhost": "npx hardhat run --network localhost scripts/UniswapV2/addLiquidity.ts",
"uniswap-remliq:localhost": "npx hardhat run --network localhost scripts/UniswapV2/removeLiquidity.ts",
"uniswap-swapexact:localhost": "npx hardhat run --network localhost scripts/UniswapV2/swapExactTokensForTokens.ts",
"uniswap-swaptok:localhost": "npx hardhat run --network localhost scripts/UniswapV2/swapTokensForExactTokens.ts",
"curve-lite-deploy": "npx hardhat run scripts/CurveLite/deployProxy.js",
"curve-lite-deploy-pool": "npx hardhat run scripts/CurveLite/deployPoolTwocryptoswap.js",
"curve-lite-addliq": "npx hardhat run scripts/CurveLite/addLiquidityTwocryptoswap.js",
"curve-lite-remliq": "npx hardhat run scripts/CurveLite/removeLiquidityTwocryptoswap.js",
"curve-lite-exchange": "npx hardhat run scripts/CurveLite/exchangeTwocryptoswap.js",
"start-node": "npx hardhat node",
"start-node-headless": "npx hardhat node &",
"kill-node": "lsof -ti:8545 | xargs kill -9",
"tests": "npx hardhat test",
"deploy-and-tests": "npm run kill-node; npm run start-node & sleep 5 && npm run uniswap-deploy && sleep 7 && npx jest --runInBand --maxConcurrency=1"
},
"keywords": [],
"author": "",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomicfoundation/ignition-core": "^0.15.7",
"@ton/core": "^0.59.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/cli-color": "^2.0.6",
"@types/mocha": "^10.0.9",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"hardhat": "^2.22.18",
"hardhat-gas-reporter": "^1.0.10",
"jest": "^29.7.0",
"@tonappchain/evm-ccl": "0.9.21",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.2.0",
"@openzeppelin/contracts-upgradeable": "^5.2.0",
"@openzeppelin/hardhat-upgrades": "^3.9.0",
"@types/inquirer": "^9.0.7",
"inquirer": "^12.5.2"
}
}