-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "decentralized-healthcare-orchestration",
"version": "1.0.0",
"description": "AI-enabled decentralized care orchestration system for India's healthcare network",
"main": "lib/index.js",
"scripts": {
"build": "tsc && node scripts/build-lambda.js",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cdk": "cdk",
"deploy": "npm run build && cdk deploy",
"destroy": "cdk destroy",
"synth": "npm run build && cdk synth",
"diff": "cdk diff",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\""
},
"keywords": [
"healthcare",
"aws",
"cdk",
"typescript",
"ai",
"triage",
"india"
],
"author": "Healthcare Orchestration Team",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.400.0",
"@aws-sdk/client-cognito-identity-provider": "^3.400.0",
"@aws-sdk/client-dynamodb": "^3.400.0",
"@aws-sdk/client-lambda": "^3.400.0",
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/client-sns": "^3.400.0",
"@aws-sdk/client-transcribe": "^3.400.0",
"@aws-sdk/lib-dynamodb": "^3.400.0",
"aws-cdk-lib": "^2.100.0",
"constructs": "^10.3.0",
"joi": "^17.9.2",
"playwright": "^1.58.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"aws-cdk": "^2.100.0",
"aws-sdk-client-mock": "^3.1.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fast-check": "^3.13.0",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}