-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "solana-ghost",
"version": "1.2.0",
"description": "Telegram bot for copy trading on solana accross various platform",
"main": "dist/index.js",
"type": "commonjs",
"license": "MIT",
"scripts": {
"dev": "ts-node --project tsconfig.json src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate:dev": "npx prisma migrate dev",
"migrate:deploy": "npx prisma migrate deploy",
"prisma:generate": "npx prisma generate",
"test": "jest"
},
"dependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@metaplex-foundation/mpl-token-metadata": "^3.3.0",
"@prisma/client": "^6.1.0",
"@project-serum/serum": "^0.13.65",
"@raydium-io/raydium-sdk": "^1.3.1-beta.58",
"@solana/spl-token": "^0.3.11",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.98.0",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"dotenv": "^16.3.1",
"prisma": "^6.1.0",
"telegraf": "^4.15.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bn.js": "^5.1.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.11",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}