-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.58 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "shipment-exception-command-center",
"version": "0.1.0",
"description": "TypeScript control plane for shipment-exception intake, carrier-rule pressure, resolution routing, and SLA-safe escalation across logistics workflows.",
"main": "dist/src/app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc --pretty false",
"start": "node dist/src/app.js",
"prerender": "tsx scripts/prerender.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"demo": "tsx scripts/run_demo.ts",
"smoke": "tsx scripts/smoke_check.ts",
"verify": "npm run lint && npm run typecheck && npm run coverage && npm run build && npm run demo && npm run smoke",
"render:assets": "powershell -ExecutionPolicy Bypass -File .\\scripts\\render_readme_assets.ps1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizcausevic-dev/shipment-exception-command-center.git"
},
"license": "AGPL-3.0-or-later",
"type": "commonjs",
"bugs": {
"url": "https://github.com/mizcausevic-dev/shipment-exception-command-center/issues"
},
"homepage": "https://github.com/mizcausevic-dev/shipment-exception-command-center#readme",
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.7.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.1",
"globals": "^15.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.7"
}
}