forked from ivmartel/dwv-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.53 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.53 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
{
"name": "dwv-angular",
"version": "0.6.1",
"description": "Medical viewer using DWV (DICOM Web Viewer) and Angular.",
"author": "ivmartel",
"license": "GPL-3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"build-trunk": "ng build --configuration production --base-href /dwv-angular/demo/trunk/",
"build-stable": "ng build --configuration production --base-href /dwv-angular/demo/stable/",
"lint": "ng lint",
"test": "ng test",
"test-hl": "ng test --browsers ChromeHeadless",
"test-ci": "ng test --browsers ChromeHeadless --code-coverage --watch false --progress false",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.8",
"@angular/cdk": "^15.2.1",
"@angular/common": "^15.2.8",
"@angular/compiler": "^15.2.8",
"@angular/core": "^15.2.8",
"@angular/forms": "^15.2.8",
"@angular/material": "^15.2.1",
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@angular/service-worker": "^15.2.8",
"cornerstone-core": "2.6.1",
"cornerstone-math": "0.1.10",
"cornerstone-tools": "6.0.9",
"cornerstone-wado-image-loader": "^4.13.1",
"dicom-parser": "^1.8.21",
"dwv": "0.31.0",
"hammerjs": "^2.0.8",
"rxjs": "^7.5.5",
"stream": "^0.0.2",
"stream-browserify": "^3.0.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.2",
"@angular-eslint/builder": "~15.2.1",
"@angular-eslint/eslint-plugin": "~15.2.1",
"@angular-eslint/eslint-plugin-template": "~15.2.1",
"@angular-eslint/schematics": "~15.2.1",
"@angular-eslint/template-parser": "~15.2.1",
"@angular/cli": "^15.2.6",
"@angular/compiler-cli": "^15.2.8",
"@angular/language-service": "^15.2.8",
"@types/cornerstone-core": "^2.1.0",
"@types/hammerjs": "^2.0.41",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"jasmine-core": "~4.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.1",
"typescript": "~4.8.4"
}
}