-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "api-cron-job",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest",
"test-signal": "node test-signal-flow.js",
"test-safe-address": "node test-signal-flow.js safe-address",
"test-gmx-api": "node test-signal-flow.js gmx-api --mock",
"test-full-flow": "node test-signal-flow.js full-flow --mock",
"test-mock": "node test-signal-flow.js mock-flow",
"lint": "eslint src/",
"build": "echo 'Build completed'",
"security-check": "npm audit",
"start": "node src/api/server.js",
"fetch:lunarcrush-tokens": "node src/scripts/fetchLunarcrushTokens.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lighthouse-web3/sdk": "^0.3.7",
"axios": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"json-stable-stringify": "^1.2.1",
"mongodb": "^6.13.1",
"node-cron": "^3.0.3",
"openai": "^4.86.1",
"p-queue": "^8.1.0",
"papaparse": "^5.5.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0"
}
}