-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.05 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
{
"name": "static-dicomweb",
"private": true,
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.28.3",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/plugin-transform-private-methods": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"has-flag": "4.0.0",
"jest": "29.7.0",
"jest-config": "29.7.0",
"jest-watcher": "29.7.0",
"lerna": "^8.1.9",
"p-locate": "^5.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@cornerstonejs/dicom-codec": "1.0.9",
"canvas": "3.1.0",
"dcmjs": "0.50.0",
"typescript": "^5.8.2"
},
"resolutions": {
"@cornerstonejs/dicom-codec": "1.0.9",
"@cornerstonejs/codec-openjph": ">=2.4.5",
"dcmjs": "0.50.1",
"canvas": "3.1.0",
"has-flag": "4.0.0",
"node-object-hash": "3.1.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"cleanTgz": "rimraf ./packages/*/*.tgz || echo No tgz",
"docker:build": "bun cleanTgz && docker build . -t braveheartsoftware/static-dicomweb:latest",
"docker:build:arm": "bun cleanTgz && docker build -f arm-Dockerfile -t braveheartsoftware/static-dicomweb:arm .",
"docker:run": "docker run -it --mount type=bind,source=/c/dicomweb,target=/dicomweb --mount type=bind,source=/a/dicom,target=/dicom -p 25080:5000 --rm --entrypoint /bin/bash braveheartsoftware/static-dicomweb:latest",
"docker:dicomwebserver": "docker run -it --mount type=bind,source=/c/dicomweb,target=/dicomweb -p 25080:5000 --rm braveheartsoftware/static-dicomweb:latest",
"test": "lerna run test --parallel --stream --",
"test:ci": "yarn run test",
"build": "lerna run build --stream --concurrency 1",
"build:parallel": "lerna run build --stream",
"build:serial": "lerna run build --stream --concurrency 1",
"build:esm": "lerna run build:esm --stream",
"build:ci": "yarn run build",
"clean": "lerna run clean --stream",
"link:exec": "lerna run link:exec --stream",
"lint": "lerna run lint --parallel --stream",
"lint:ci": "yarn run lint",
"lint:fix": "echo format check",
"format": "prettier --write \"packages/*/{lib,src}/**/*.{mjs,ts,js}\"",
"postinstallManual": "git config core.hooksPath '.husky' && echo 'git hooks configured'",
"publish": "echo Use yarn publishJS --new-version VERSION --otp XXXXXX",
"publishJS": "lerna run publishJS --",
"pack:js": "lerna run pack:js --",
"reset:hooks": "git config core.hooksPath '.git' && echo 'git hooks was reset'"
}
}