-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.36 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
{
"name": "expression-editor",
"version": "3.1.25",
"scripts": {
"ng": "ng",
"start": "ng build --watch ngx-expression-editor & sleep 25; ng serve --port 4202; s=$?; kill %1; exit $s",
"start-public": "ng build --watch ngx-expression-editor & sleep 25; node bin/start-public.js; s=$?; kill %1; exit $s",
"build:gh-pages": "ng build ngx-expression-editor && ng build expression-editor && ng build --output-path docs --base-href /expression-editor/ && node concatenate.js --output-path docs",
"build": "ng build ngx-expression-editor --configuration production && ng build expression-editor --configuration production && node concatenate.js && ng build",
"test": "ng test --watch=false && ng run demo:cypress-run",
"test:unit": "ng test --watch=false",
"lint": "ng lint",
"test:e2e": "ng e2e --port 4203"
},
"dependencies": {
"@angular/animations": "~17.3.4",
"@angular/cdk": "^17.3.4",
"@angular/common": "~17.3.4",
"@angular/compiler": "~17.3.4",
"@angular/core": "~17.3.4",
"@angular/elements": "^17.3.4",
"@angular/forms": "~17.3.4",
"@angular/material": "^17.3.4",
"@angular/platform-browser": "~17.3.4",
"@angular/platform-browser-dynamic": "~17.3.4",
"@angular/router": "~17.3.4",
"@bugsplat/angular-tree-component": "^13.0.1",
"@material/tooltip": "^12.0.0",
"@ungap/custom-elements": "^1.0.0",
"autocomplete-lhc": "^18.6.2",
"classlist.js": "^1.1.20150312",
"easy-path-expressions": "^3.1.0",
"fast-copy": "^2.1.1",
"fhirpath": "^3.10.1",
"jquery": "^3.6.0",
"rxjs": "~7.4.0",
"tslib": "^2.0.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.4",
"@angular/cli": "~17.3.4",
"@angular/compiler-cli": "~17.3.4",
"@cypress/schematic": "^2.5.1",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.20.17",
"codelyzer": "^6.0.0",
"concat": "^1.0.3",
"concat-with-sourcemaps": "^1.1.0",
"cypress": "^13.7.3",
"cypress-file-upload": "^5.0.8",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~5.0.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",
"ng-packagr": "^17.3.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~5.4.5"
}
}