-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nodets",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"create-narrative-mapping": "ts-node ./src/scripts/createNarrativeMapping.ts",
"lint": "eslint \"./src/**/*.{js,ts}\"",
"lint:fix": "eslint \"./src/**/*.{js,ts}\" --fix",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --check",
"prettier:fix": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start:build": "tsc -w",
"start:run": "nodemon build/app.js",
"start": "concurrently npm:start:*",
"test": "jest --forceExit",
"audit": "better-npm-audit audit"
},
"jest": {
"preset": "ts-jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.39",
"@angular/common": "^21.2.23",
"@types/fhir": "^0.0.37",
"axios": "^1.6.2",
"better-npm-audit": "^3.11.0",
"commander": "^11.1.0",
"fhir-package-loader": "^2.2.2",
"fp-ts": "^2.16.1",
"fs": "^0.0.1-security",
"httprequest": "^0.3.0",
"mock-fs": "^5.4.1",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"sync-request": "^6.1.0",
"ts-node": "^10.9.2",
"ts-sync-request": "^1.4.1",
"winston": "^3.11.0",
"yaml": "^2.3.4"
},
"overrides": {
"browserslist": "^4.28.7",
"fast-uri": "^3.1.6",
"js-yaml": "^4.3.2",
"qs": "^6.16.0",
"tar": "^7.5.19",
"minimatch@3.1.5": {
"brace-expansion": "^1.1.18"
},
"minimatch@10.2.5": {
"brace-expansion": "^5.0.9"
},
"@typescript-eslint/typescript-estree@6.21.0": {
"minimatch": {
".": "^9.0.9",
"brace-expansion": "^2.1.4"
}
}
},
"engines": {
"node": ">=22.0.0 <25.0.0"
}
}