-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.46 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
{
"name": "ng-corner",
"version": "1.85.0",
"private": true,
"scripts": {
"prepare": "husky install",
"ng": "ng",
"gulp": "gulp",
"start": "ng serve ncv-example",
"build": "ng build ncv-example",
"build:lib": "ng build ng-cornerstone && gulp copy-resources",
"watch:lib": "ng build ng-cornerstone --watch --configuration development",
"check:prettier": "npx eslint-config-prettier commitlint.config.js",
"format": "prettier --config .prettierrc.json --list-different \"projects/**/*.{ts,html,scss}\"",
"test": "ng test",
"lint": "ng lint",
"lint:ts": "eslint --cache . --ext .ts,.html",
"lint:ts:fix": "eslint --fix --cache . --ext .ts,.html",
"lint:styles": "stylelint ./projects/**/*.scss",
"lint:styles:fix": "stylelint ./projects/**/*.scss --fix",
"lint:stage": "lint-staged --config ./.lintstagedrc.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --pkg projects/ng-cornerstone/package.json && git add CHANGELOG.md",
"publish": "npm publish",
"orthanc": "docker run --name orthanc-nginx-proxy -v C:/Users/YANQZSU/git/dcm-js/ng-corner/orthanc:/etc/nginx/conf.d:ro -p 8080:80 -d nginx",
"nginx": "docker run -p 8081:443 -d --name dicom-web dicom-web",
"docker-build": "docker build -t dicom-web . --no-cache --progress plain"
},
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@cornerstonejs/calculate-suv": "1.0.3",
"@cornerstonejs/core": "^1.84.4",
"@cornerstonejs/dicom-image-loader": "^1.84.4",
"@cornerstonejs/nifti-volume-loader": "^1.84.4",
"@cornerstonejs/streaming-image-volume-loader": "^1.84.4",
"@cornerstonejs/tools": "^1.84.4",
"dcmjs": "^0.29.8",
"dicomweb-client": "^0.8.4",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.11",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "^16.2.11",
"@angular/compiler-cli": "^16.2.12",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-angular": "^17.6.5",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"husky": "^8.0.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "^13.2.2",
"ng-packagr": "^16.2.3",
"prettier": "2.5.1",
"stylelint": "^15.7.0",
"stylelint-config-standard-scss": "^9.0.0",
"typescript": "~4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}