56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@trading-platform/mcp-auth",
|
|
"version": "1.0.0",
|
|
"description": "MCP Server for Authentication - JWT, Sessions, Password Reset",
|
|
"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",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"express": "^4.18.2",
|
|
"pg": "^8.11.3",
|
|
"zod": "^3.22.4",
|
|
"winston": "^3.11.0",
|
|
"uuid": "^9.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"helmet": "^7.1.0",
|
|
"cors": "^2.8.5",
|
|
"bcrypt": "^5.1.1",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"crypto": "^1.0.1"
|
|
},
|
|
"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/bcrypt": "^5.0.2",
|
|
"@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",
|
|
"supertest": "^6.3.3",
|
|
"@types/supertest": "^2.0.16",
|
|
"eslint": "^8.55.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
"@typescript-eslint/parser": "^6.13.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"author": "Trading Platform Team",
|
|
"license": "UNLICENSED",
|
|
"private": true
|
|
}
|