forked from zwong91/trading-bot-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "trading-bot-script",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm run init && npm run bot && npm run stop",
"init": "npx tsc && node dist/init.js",
"bot": "npx tsc && node dist/bot.js",
"stop": "npx tsc && node dist/stop.js",
"test": "npx ts-node test/run-all-tests.ts",
"test:critical": "npx ts-node test/run-all-tests.ts --critical-only",
"test:quick": "npx ts-node test/quick-test.ts",
"test:help": "npx ts-node test/run-all-tests.ts --help",
"serve": "npm run api",
"api": "npx tsc && node dist/server.js",
"api:dev": "npx tsc && nodemon dist/server.js",
"prettier": "prettier --write '**/*.{js,ts,json,md}'",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:logs": "docker compose logs postgres",
"db:reset": "docker compose down -v && docker-compose up -d postgres",
"build": "npx tsc"
},
"keywords": [],
"author": "Hello",
"license": "ISC",
"dependencies": {
"@lb-xyz/sdk": "5.0.14",
"@lb-xyz/sdk-core": "2.0.13",
"@lb-xyz/sdk-v2": "3.0.28",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"ethers": "^6.14.4",
"hono": "^4.6.3",
"pg": "^8.12.0",
"prettier": "^3.2.5",
"viem": "^2.31.0"
},
"devDependencies": {
"@hono/node-server": "^1.12.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.0.0",
"@types/pg": "^8.11.8",
"nodemon": "^3.1.0",
"typescript": "^5.4.4"
}
}