-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1002 Bytes
/
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
{
"name": "serum-swap-bot",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node src/main.js",
"build": "babel src -d lib"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-flow": "^7.13.13"
},
"dependencies": {
"@babel/node": "^7.13.13",
"@project-serum/borsh": "^0.2.1",
"@solana/spl-token": "^0.1.3",
"@solana/spl-token-registry": "^0.2.59",
"@solana/spl-token-swap": "^0.1.0",
"@solana/web3.js": "^1.5.0",
"bip39": "^3.0.3",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
"dotenv": "^8.2.0",
"ed25519-hd-key": "^1.2.0",
"node-telegram-bot-api": "^0.52.0",
"tweetnacl": "^1.0.3"
}
}