forked from ARBProtocol/solana-jupiter-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "solana-jupiter-bot",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ARBProtocol/solana-jupiter-bot.git"
},
"bin": "./src/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"config": "node ./src/cli.js",
"start": "node ./src/index.js && node ./src/bot.js",
"trade": "node ./src/bot.js",
"test": "xo && ava"
},
"files": [
"./src/index.js",
"./src/generator.js"
],
"dependencies": {
"@jup-ag/core": "^1.0.0-beta.27",
"@solana/web3.js": "^1.44.0",
"asciichart": "^1.5.25",
"axios": "^0.27.2",
"bs58": "^5.0.0",
"cliui": "^7.0.4",
"import-jsx": "^4.0.1",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"keypress": "^0.2.1",
"meow": "^9.0.0",
"moment": "^2.29.3",
"ora-classic": "^5.4.2",
"react": "^17.0.2",
"strip-ansi": "^7.0.1"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/register": "^7.17.7",
"chalk": "^4.1.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.5.0",
"ink-testing-library": "^2.1.0",
"prettier": "2.7.1"
}
}