-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.93 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.93 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "aggregator-multisplit",
"version": "1.0.0",
"description": "A project for multi-split token swaps using intermediate tokens to reduce slippage.",
"main": "scripts/deploy.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"compile": "hardhat --config hardhat.config.js compile",
"test": "hardhat --config hardhat.config.js test",
"coverage": "COVERAGE=true hardhat --config hardhat.config.js coverage",
"deploy": "ENV_FILE=production hardhat --config hardhat.config.js run scripts/deploy.js --network harmony",
"deploy:testnet": "ENV_FILE=dev hardhat --config hardhat.config.js run scripts/deploy.js --network harmonyTestnet",
"verify:testnet": "ENV_FILE=dev hardhat --config hardhat.config.js run scripts/verify.js --network harmonyTestnet",
"simulate": "ENV_FILE=production hardhat --config hardhat.config.js run scripts/simulate.js --network harmony",
"simulate:testnet": "ENV_FILE=dev hardhat --config hardhat.config.js run scripts/simulate.js --network harmonyTestnet",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"clean": "rimraf cache artifacts || rm -rf cache artifacts",
"prettier": "prettier --write \"./**/*.{js,json,md}\"",
"prettier:check": "prettier --check \"./**/*.{js,json,md}\""
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@reduxjs/toolkit": "^1.8.4",
"@reown/appkit": "^1.8.7",
"@reown/appkit-adapter-ethers": "^1.8.7",
"@tailwindcss/forms": "^0.5.6",
"@tanstack/react-query": "^5.74.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@uniswap/sdk": "2.0.6",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"bootstrap": "^5.2.0",
"caniuse-lite": "^1.0.30001712",
"chart.js": "^4.4.0",
"dotenv": "^16.5.0",
"ethers": "^6",
"glob": "^11.0.2",
"lodash": "^4.17.21",
"postcss": "^8.5.3",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-blockies": "^1.4.1",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-redux": "^8.0.2",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.3.0",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.6",
"styled-components": "^6.0.8",
"tailwindcss": "^3.3.3",
"tokenList": "./src/lists",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@metamask/providers": "^21.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitejs/plugin-react": "^4.4.1",
"chai": "^4.5.0",
"concurrently": "^9.1.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"hardhat": "^2.17.0",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.5.3",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vitepress": "2.0.0-alpha.12"
},
"keywords": [
"ethereum",
"smart-contracts",
"tokens",
"swap",
"slippage"
],
"author": "mzfshark",
"license": "MIT",
"packageManager": "[email protected]+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
}