This commit is contained in:
2026-01-11 12:38:39 +05:30
commit 7c6219e8ce
9 changed files with 3206 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "hypr_tracker",
"version": "1.0.0",
"description": "TypeScript Express Hello World",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nktkas/hyperliquid": "^0.30.2",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"mysql2": "^3.16.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}