This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
102 lines (102 loc) · 2.93 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "matchboxv3",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production --base-href /matchboxv3/",
"test": "ng test",
"test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessNoSandbox --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.1",
"@angular/cdk": "^13.1.1",
"@angular/common": "^13.1.1",
"@angular/compiler": "^13.1.1",
"@angular/core": "^13.1.1",
"@angular/forms": "^13.1.1",
"@angular/material": "^13.1.1",
"@angular/platform-browser": "^13.1.1",
"@angular/platform-browser-dynamic": "^13.1.1",
"@angular/router": "^13.1.1",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"@types/jasmine": "^3.6.9",
"@types/pako": "^1.0.3",
"ace-builds": "^1.4.14",
"angular-cli-ghpages": "^1.0.0-rc.1",
"angular-oauth2-oidc": "^13.0.1",
"antlr4": "^4.7.2",
"browserify-zlib": "^0.2.0",
"core-js": "^2.6.2",
"debug": "^4.3.1",
"fhir-kit-client": "file:../fhir-kit-client",
"fhirpath": "^2.10.2",
"jasmine": "^3.7.0",
"js-base64": "^3.7.2",
"js-untar": "^2.0.0",
"ngx-filesize": "^1.1.4",
"ngx-highlightjs": "^4.1.3",
"pako": "^2.0.4",
"ramda": "^0.26.1",
"rxjs": "^6.6.7",
"tsickle": "^0.34.0",
"tslib": "^2.0.0",
"uuid": "^8.3.2",
"yarn": "^1.22.17",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.2",
"@angular-eslint/builder": "13.0.0-alpha.1",
"@angular-eslint/eslint-plugin": "13.0.0-alpha.1",
"@angular-eslint/eslint-plugin-template": "13.0.0-alpha.1",
"@angular-eslint/schematics": "13.0.0-alpha.1",
"@angular-eslint/template-parser": "13.0.0-alpha.1",
"@angular/cli": "^13.1.2",
"@angular/compiler-cli": "^13.1.1",
"@angular/language-service": "^13.1.1",
"@types/debug": "^4.1.5",
"@types/node": "^10.12.18",
"@types/ramda": "^0.26.44",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"codelyzer": "^6.0.0",
"eslint": "^8.2.0",
"husky": "^1.3.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"json-patch": "^0.7.0",
"karma": "~6.3.1",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "2.2.1",
"pretty-quick": "^1.10.0",
"protractor": "~7.0.0",
"ts-node": "~7.0.1",
"tslint": "~6.1.0",
"typescript": "~4.5.4"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"zlib": false
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}