-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.2 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "gxq-studio",
"version": "1.0.0",
"description": "The most advanced Solana flash loan arbitrage system",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run build:backend && npm run build:webapp",
"build:backend": "tsc -p tsconfig.json",
"build:webapp": "cd webapp && npm run build",
"start": "node dist/src/index.js",
"start:server": "node dist/src/server.js",
"start:railway": "node dist/src/index-railway.js",
"start:webapp": "cd webapp && npm start",
"dev": "ts-node-esm src/index.ts",
"dev:server": "ts-node-esm src/server.ts",
"test": "jest --ci --coverage",
"test:webapp": "cd webapp && npm test -- --ci --coverage || echo 'No webapp tests configured yet'",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch '**/*.integration.test.ts'",
"test:farcaster": "npm run build:backend && node dist/scripts/testFarcaster.js",
"lint": "eslint 'src/**/*.ts' 'api/**/*.ts' 'scripts/**/*.ts' --max-warnings=0",
"lint:fix": "eslint 'src/**/*.ts' 'api/**/*.ts' 'scripts/**/*.ts' --fix",
"lint:webapp": "cd webapp && npx eslint . --max-warnings=0",
"lint:webapp:fix": "cd webapp && npx eslint . --fix",
"type-check": "tsc --noEmit",
"type-check:webapp": "cd webapp && tsc --noEmit",
"coverage:report": "bash scripts/merge-coverage.sh",
"coverage:analyze": "node scripts/analyze-coverage-gaps.js",
"dead-code:analyze": "bash scripts/analyze-dead-code.sh",
"optimize": "npm run lint:fix && npm run lint:webapp:fix && npm run dead-code:analyze",
"validate": "npm run lint && npm run type-check && npm test",
"setup-env": "bash scripts/setup-env.sh",
"deploy": "npm run pre-deploy && vercel --prod",
"deploy:staging": "vercel",
"deploy:vercel": "bash scripts/deploy-vercel.sh",
"deploy:railway": "bash scripts/deploy-railway.sh",
"deploy:docker": "bash scripts/deploy-docker.sh",
"pre-deploy": "ts-node-esm scripts/pre-deploy-check.ts",
"validate-endpoints": "ts-node-esm scripts/validate-endpoints.ts",
"logs": "bash scripts/monitor-logs.sh",
"monitor": "ts-node-esm scripts/monitor-health.ts",
"cli": "ts-node-esm cli/index.ts",
"admin": "ts-node-esm cli/commands/admin.ts",
"analyze-deployment": "ts-node-esm scripts/post-deployment-analyzer.ts",
"canary-deploy": "ts-node-esm scripts/canary-deployment.ts",
"setup-monitoring": "ts-node-esm scripts/monitoring-setup.ts",
"master": "bash scripts/master.sh",
"validate-build": "bash scripts/validate-build.sh",
"selfheal": "bash scripts/gxq-selfheal.sh",
"env-check": "bash scripts/env-check.sh",
"env-sync": "bash scripts/env-sync-check.sh",
"db-migrate": "bash scripts/db-migrate.sh",
"health": "bash scripts/health-check.sh",
"perf": "bash scripts/performance-report.sh"
},
"keywords": [
"solana",
"flash-loan",
"arbitrage",
"defi",
"jupiter",
"quicknode"
],
"author": "GXQ STUDIO",
"license": "MIT",
"engines": {
"node": ">=24",
"npm": ">=10"
},
"dependencies": {
"@jup-ag/api": "^6.0.48",
"@octokit/rest": "^20.1.2",
"@pythnetwork/client": "^2.22.1",
"@pythnetwork/hermes-client": "^2.0.0",
"@solana/spl-token": "^0.3.11",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@types/pg": "^8.16.0",
"@vercel/node": "^3.2.29",
"axios": "^1.13.5",
"bcrypt": "^5.1.1",
"bs58": "^6.0.0",
"chalk": "^5.6.2",
"commander": "^11.1.0",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"inquirer": "^9.3.8",
"jsonwebtoken": "^9.0.3",
"ora": "^7.0.1",
"pg": "^8.18.0",
"prom-client": "^15.1.3",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/bn.js": "^5.2.0",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-plugin-complexity": "^1.0.2",
"jest": "^29.7.0",
"jscpd": "^4.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^5.3.2"
}
}