-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.64 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
{
"name": "bnbcopilot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "nodemon src/index.ts",
"start": "TS_NODE_PROJECT=tsconfig-paths.json node -r tsconfig-paths/register dist/index.js",
"build": "rm -rf dist && tsc && tsc-alias && copyfiles -u 1 src/**/*.json dist/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:defi": "vitest run src/tests/services/defi",
"test:wallet": "vitest run src/tests/services/wallet",
"test:ai": "vitest run src/tests/services/ai",
"migrate:keeper": "ts-node src/scripts/migrateKeeperIdentity.ts",
"migrate:amounts": "ts-node src/scripts/migrateAmountsToString.ts"
},
"devDependencies": {
"@swc/core": "^1.11.31",
"@types/cors": "^2.8.19",
"@types/mongoose": "^5.11.97",
"@types/natural": "^5.1.0",
"@types/node": "^22.15.29",
"@types/sentiment": "^5.0.4",
"@vitest/coverage-v8": "^3.2.3",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"unplugin-swc": "^1.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.3"
},
"dependencies": {
"@covalenthq/client-sdk": "^2.3.2",
"@google/generative-ai": "^0.24.1",
"@moralisweb3/core": "^2.7.4",
"@moralisweb3/evm-api": "^2.27.2",
"@pancakeswap/chains": "^0.5.2",
"@pancakeswap/sdk": "^5.8.14",
"@pancakeswap/smart-router": "^7.2.5",
"@pancakeswap/tokens": "^0.7.5",
"@pancakeswap/v3-sdk": "3.9.5",
"@pythnetwork/hermes-client": "^2.0.0",
"@tavily/core": "^0.5.6",
"@typegoose/typegoose": "^12.16.0",
"@types/express": "^5.0.3",
"@types/node-cron": "^3.0.11",
"@types/qrcode": "^1.5.5",
"@uniswap/v3-sdk": "^3.25.2",
"@walletconnect/keyvaluestorage": "^1.1.1",
"@walletconnect/sign-client": "^2.21.0",
"@walletconnect/types": "^2.21.0",
"axios": "^1.9.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"ethers": "^6.14.3",
"express": "^5.1.0",
"graphql-request": "^7.2.0",
"mongoose": "^8.15.1",
"moralis": "^2.27.2",
"natural": "^6.10.0",
"node-cron": "^4.1.0",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "^0.66.0",
"qrcode": "^1.5.4",
"sentiment": "^5.0.2",
"telegraf": "^4.16.3",
"viem": "^2.31.4",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
}
}