-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 899 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
27
{
"name": "mtplx-dashboard",
"version": "0.2.0",
"private": true,
"description": "Node/TypeScript server fronting the MTPLX metrics dashboard and live log, polling MTPLX server-side and pushing updates via SSE.",
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS=--disable-warning=ExperimentalWarning tsx watch server/server.ts",
"build": "tsc -p tsconfig.json",
"start": "NODE_OPTIONS=--disable-warning=ExperimentalWarning node dist/server.js",
"test": "node --disable-warning=ExperimentalWarning --import tsx --test server/*.test.ts",
"typecheck": "tsc --noEmit",
"mtplx:postupgrade": "bash scripts/mtplx-postupgrade.sh"
},
"engines": {
"node": ">=22.5"
},
"dependencies": {
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}