-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 804 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 804 Bytes
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
{
"name": "mcp-data-explorer",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:server": "tsx src/server/index.ts",
"dev:ui": "vite src/ui --port 3002",
"dev:host": "vite --config host/vite.config.ts host --port 8080",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:ui\" \"npm run dev:host\"",
"build": "vite build src/ui && vite build host"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "git+https://github.com/modelcontextprotocol/ext-apps.git",
"@modelcontextprotocol/sdk": "^1.0.0",
"chart.js": "^4.4.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"concurrently": "^8.2.2",
"tsx": "^4.6.2",
"typescript": "^5.3.2",
"vite": "^5.0.5"
}
}