-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "static-dicomweb",
"private": true,
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15",
"yarn": ">=1.22.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"canvas": "2.11.1",
"typescript": "5.6.3"
},
"resolutions": {
"@cornerstonejs/codec-openjph": ">=2.4.5",
"canvas": "^2.11.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"docker:build": "docker build . -t braveheartsoftware/static-dicomweb:0.6",
"docker:run": "docker run --mount type=bind,source=c:/users/wayfa/dicomweb,target=/dicomweb -p 25080:5000 -p 25104:11112 -d braveheartsoftware/static-dicomweb:0.6",
"test": "lerna run test --parallel --stream",
"test:ci": "yarn run test",
"build": "lerna run build --stream",
"build:ci": "yarn run build",
"link:exec": "lerna run link:exec --stream",
"lint": "lerna run lint --parallel --stream",
"lint:ci": "yarn run lint",
"lint:fix": "lerna run lint:fix --parallel --stream",
"postinstall": "git config core.hooksPath '.husky' && echo 'git hooks configured'",
"publish": "lerna publish --force-publish --no-private",
"publishJS": "lerna run publishJS --",
"reset:hooks": "git config core.hooksPath '.git' && echo 'git hooks was reset'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{ts,js,jsx,tsx,json,md,css}": [
"eslint --fix"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}