-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.51 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.51 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
{
"name": "prior-auth",
"version": "0.1.0",
"private": true,
"description": "AuthScript - AI-Powered Prior Authorization Demo",
"workspaces": [
"apps/dashboard",
"shared/types",
"shared/validation"
],
"scripts": {
"dev": "dotnet run --project orchestration/AuthScript.AppHost",
"dev:dashboard": "npm run dev -w apps/dashboard",
"dev:intelligence": "cd apps/intelligence && uv run uvicorn src.main:app --reload --port 8000",
"build": "npm run build --workspaces --if-present",
"build:dashboard": "npm run build -w apps/dashboard",
"build:shared": "npm run build -w shared/types && npm run build -w shared/validation",
"build:containers": "docker build -t authscript-intelligence ./apps/intelligence && docker build -t authscript-gateway ./apps/gateway/Gateway.API",
"test": "npm run test --workspaces --if-present",
"test:dashboard": "npm run test -w apps/dashboard",
"test:intelligence": "cd apps/intelligence && uv run pytest",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"sync:schemas": "bash ./scripts/build/sync-schemas.sh",
"generate": "orval"
},
"devDependencies": {
"jsdom": "^27.4.0",
"orval": "^7.3.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"@tanstack/router-core": "1.131.35"
},
"dependencies": {
"seroval": "^1.5.0"
}
}