43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@trading-platform/mcp-vip",
|
|
"version": "1.0.0",
|
|
"description": "MCP Server for VIP Subscriptions - Gold, Platinum, Diamond tiers",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"express": "^4.18.2",
|
|
"pg": "^8.11.3",
|
|
"zod": "^3.22.4",
|
|
"winston": "^3.11.0",
|
|
"decimal.js": "^10.4.3",
|
|
"uuid": "^9.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"helmet": "^7.1.0",
|
|
"cors": "^2.8.5",
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"typescript": "^5.3.2",
|
|
"ts-node-dev": "^2.0.0",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.11",
|
|
"ts-jest": "^29.1.1"
|
|
},
|
|
"engines": { "node": ">=18.0.0" },
|
|
"private": true
|
|
}
|