-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 3.15 KB
/
package.json
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
{
"name": "fhir-obs-viewer",
"version": "7.0.4",
"scripts": {
"ng": "ng",
"start": "ng serve --poll=2000",
"start-dist": "ng serve --configuration production --poll=2000",
"start-public": "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",
"unit": "ng test",
"test": "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",
"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": "^17.3.5",
"@angular/cdk": "^17.3.10",
"@angular/common": "^17.3.5",
"@angular/compiler": "^17.3.5",
"@angular/core": "^17.3.5",
"@angular/forms": "^17.3.5",
"@angular/material": "^17.3.10",
"@angular/platform-browser": "^17.3.5",
"@angular/platform-browser-dynamic": "^17.3.5",
"@angular/router": "^17.3.5",
"autocomplete-lhc": "^19.2.2",
"csv-stringify": "^6.4.0",
"fhirclient": "^2.5.2",
"fhirpath": "^3.5.0",
"file-saver": "^2.0.5",
"json5": "^2.2.3",
"lodash-es": "^4.17.21",
"ng-table-virtual-scroll": "~1.6.1",
"ngx-toastr": "^15.2.2",
"rxjs": "~6.6.0",
"tslib": "^2.4.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^17.0.2",
"@angular-devkit/build-angular": "^17.3.5",
"@angular/cli": "^17.3.5",
"@angular/compiler-cli": "^17.3.5",
"@cypress/schematic": "^1.6.0",
"@cypress/webpack-preprocessor": "^5.15.5",
"@types/fhir": "^3.0.2",
"@types/hapi": "^18.0.8",
"@types/jasmine": "~3.6.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.14.6",
"cypress": "^13.7.1",
"cypress-file-upload": "^5.0.8",
"cypress-pipe": "^2.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jquery": "^3.6.0",
"json5-writer": "^0.2.0",
"karma": "^6.3.16",
"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.2.0",
"ng-mocks": "^14.12.2",
"prettier": "2.2.1",
"read-excel-file": "^5.2.9",
"source-map-explorer": "^2.5.3",
"ts-loader": "^9.4.1",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~5.4.5",
"write-excel-file": "^1.3.3",
"xlsx": "^0.18.5",
"xmlhttprequest": "^1.8.0"
}
}