package.json•1.46 kB
{
"name": "weather-mcp-db",
"version": "1.0.0",
"description": "Weather service with MCP and REST API endpoints",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch server/src/index.ts",
"mcp": "tsx server/src/mcp-standalone.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint server/src/**/*.ts",
"lint:fix": "eslint server/src/**/*.ts --fix"
},
"keywords": [
"weather",
"mcp",
"api",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"supertest": "^7.1.4",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}