-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "sniper",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@avnu/avnu-sdk": "^1.2.4",
"@uniswap/sdk-core": "^4.2.0",
"@uniswap/swap-router-contracts": "1.1.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"ethers": "^6.11.1",
"figlet": "^1.7.0",
"fs": "^0.0.1-security",
"sqlite3": "^5.1.6",
"starknet": "^5.24.3"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"@types/sqlite3": "^3.1.11",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"scripts": {
"cli": "npx tsc && node dist/index.js",
"deploy": "npx tsc && node --no-warnings dist/deploy.js",
"liquidity": "npx tsc && node --no-warnings dist/addLiquidity.js",
"snipe_sn": "npx tsc && node --no-warnings dist/snipe_sn.js",
"snipe_arb": "npx tsc && node --no-warnings dist/snipe_arb.js",
"build": "npx tsc",
"test": "mocha"
}
}