forked from preston/cql-studio
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.75 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.75 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
{
"name": "cql-studio",
"version": "2.0.1",
"author": "Preston Lee",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cqframework/cql-studio"
},
"homepage": "https://github.com/cqframework/cql-studio",
"bugs": {
"url": "https://github.com/cqframework/cql-studio/issues"
},
"scripts": {
"ng": "ng",
"start": "envsubst < public/configuration.template.js > public/configuration.js && ng serve",
"build": "ng build",
"watch": "envsubst < public/configuration.template.js > public/configuration.js && ng build --watch --configuration development",
"test": "ng test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.8",
"@angular/common": "^21.2.10",
"@angular/compiler": "^21.2.10",
"@angular/core": "^21.2.10",
"@angular/forms": "^21.2.10",
"@angular/platform-browser": "^21.2.10",
"@angular/router": "^21.2.10",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.41.1",
"@cqframework/cql": "^4.0.0-beta.1",
"@lezer/highlight": "^1.2.3",
"@lhncbc/ucum-lhc": "^7.1.6",
"@types/fhir": "^0.0.41",
"@types/prismjs": "^1.26.6",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"bootswatch": "^5.3.8",
"chart.js": "^4.5.1",
"codemirror": "^6.0.2",
"fflate": "^0.8.2",
"mammoth": "^1.12.0",
"marked": "<18",
"ng2-charts": "^10.0.0",
"ngx-markdown": "^21.2.0",
"ngx-timeago": "^4.1.0",
"pdfjs-dist": "^5.6.205",
"prism-js-fold": "^1.0.1",
"prismjs": "^1.30.0",
"rxjs": "~7.8.2",
"semver": "^7.7.4",
"tslib": "^2.8.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@angular/build": "^21.2.8",
"@angular/cli": "^21.2.8",
"@angular/compiler-cli": "^21.2.10",
"@playwright/test": "^1.59.1",
"@types/semver": "^7.7.1",
"baseline-browser-mapping": "^2.10.21",
"jsdom": "^29.0.2",
"typescript": "<6",
"vitest": "^4.1.5"
}
}