-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fhir-obs-viewer",
"version": "7.9.4",
"scripts": {
"ng": "ng",
"start": "ng serve --poll=2000",
"start:skip-xlsx": "SKIP_XLSX=1 ng serve --poll=2000",
"start-dist": "ng serve --configuration production --poll=2000",
"start-public": "node bin/start-public.js",
"start-public:skip-xlsx": "SKIP_XLSX=1 node bin/start-public.js",
"start-dist-public": "node bin/start-public.js --dist",
"analyze": "ng build --configuration production --source-map && source-map-explorer public/main.*",
"analyze-gzip": "ng build --configuration production --source-map && source-map-explorer public/main.* --gzip",
"build": "ng build --configuration production && npm run build-autoconfig",
"unit": "ng test",
"test": "npm run test-autoconfig && npm run unit && npm run e2e",
"lint": "ng lint",
"e2e": "ng run fhir-obs-viewer:cypress-e2e",
"cypress:open": "ng run fhir-obs-viewer:cypress-open",
"prettier-fix": "prettier --write '**/*.ts'",
"update-excel-config": "node bin/update-excel-configurations.js && npm run build",
"update-cached-lists": "node bin/update-non-required-binding-lists.js",
"build-autoconfig": "node autoconfig-src/build-autoconfig.js",
"test-autoconfig": "node --test autoconfig-src/autoconfig.test.js",
"autoconfig": "NODE_TLS_REJECT_UNAUTHORIZED=0 node autoconfig-build/autoconfig.js",
"update-cached-initialization-settings": "node bin/update-cached-initialization-settings.js",
"post-evidence-variable-data": "curl -X POST 'https://lforms-fhir.nlm.nih.gov/baseR4' -H 'Content-Type: application/fhir+json; charset=UTF-8' -d '@evidence-variable-r4-bundle.json'"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.18",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.18",
"@angular/compiler": "^20.3.18",
"@angular/core": "^20.3.18",
"@angular/forms": "^20.3.18",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.18",
"@angular/platform-browser-dynamic": "^20.3.18",
"@angular/router": "^20.3.18",
"autocomplete-lhc": "^19.3.4",
"commander": "^14.0.3",
"csv-stringify": "^6.6.0",
"fhirclient": "^2.5.5",
"fhirpath": "^4.8.5",
"file-saver": "^2.0.5",
"highlight.js": "^11.11.1",
"json5": "^2.2.3",
"lodash-es": "^4.17.23",
"ng-table-virtual-scroll": "~1.6.1",
"ngx-toastr": "^15.2.2",
"rxjs": "~6.6.0",
"tslib": "^2.4.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^20.0.0",
"@angular-devkit/build-angular": "^20.3.20",
"@angular/cli": "^20.3.20",
"@angular/compiler-cli": "^20.3.18",
"@cypress/schematic": "^4.3.0",
"@cypress/webpack-preprocessor": "^5.17.1",
"@types/fhir": "^0.0.41",
"@types/hapi": "^18.0.15",
"@types/jasmine": "~3.6.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.130",
"cypress": "^13.17.0",
"cypress-file-upload": "^5.0.8",
"cypress-pipe": "^2.0.1",
"esbuild": "^0.27.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jquery": "^3.7.1",
"json5-writer": "^0.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.5.0",
"mock-xmlhttprequest": "^8.4.1",
"ng-mocks": "^14.15.1",
"prettier": "2.2.1",
"read-excel-file": "^5.8.8",
"source-map-explorer": "^2.5.3",
"ts-loader": "^9.5.4",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~5.8.3",
"write-excel-file": "^1.4.30",
"xlsx": "^0.18.5",
"xmlhttprequest": "^1.8.0"
},
"overrides": {
"expo-random": "11.2.0",
"@angular-builders/custom-webpack": {
"@angular-devkit/build-angular": "20.3.23"
}
}
}