forked from RadicalImaging/Static-DICOMWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "static-dicomweb",
"private": true,
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15",
"yarn": ">=1.22.4"
},
"devDependencies": {
"@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.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-eslint": "^10.1.0",
"babel-jest-modules": "^0.0.2",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"lerna": "^5.4.2",
"must": "^0.13.4",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rollup": "^3.11.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@cornerstonejs/codec-openjpeg": "^1.2.1",
"@cornerstonejs/codec-openjph": "^2.4.1",
"@cornerstonejs/dicom-codec": "^0.1.6",
"husky": "^7.0.4"
},
"resolutions": {
"@cornerstonejs/codec-openjpeg": "^1.2.1",
"@cornerstonejs/codec-openjph": "^2.4.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"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'",
"reset:hooks": "git config core.hooksPath '.git' && echo 'git hooks was reset'"
}
}