-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "ohif-gcp-mode",
"version": "0.0.2",
"description": "OHIF GCP Mode",
"author": "IDC",
"license": "MIT",
"repository": "OHIF/Viewers",
"main": "src/index.js",
"module": "src/index.js",
"engines": {
"node": ">=14",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"ohif-mode"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --output-pathinfo",
"dev:cornerstone": "yarn run dev",
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
"build:package": "yarn run build",
"start": "yarn run dev",
"test:unit": "jest --watchAll",
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
},
"peerDependencies": {
"@ohif/core": "3.9.0-beta.74",
"@ohif/extension-cornerstone": "3.9.0-beta.74",
"@ohif/extension-cornerstone-dicom-rt": "3.9.0-beta.74",
"@ohif/extension-cornerstone-dicom-seg": "3.9.0-beta.74",
"@ohif/extension-cornerstone-dicom-sr": "3.9.0-beta.74",
"@ohif/extension-default": "3.9.0-beta.74",
"@ohif/extension-dicom-pdf": "3.9.0-beta.74",
"@ohif/extension-dicom-video": "3.9.0-beta.74",
"@ohif/extension-measurement-tracking": "3.9.0-beta.74"
},
"dependencies": {
"@babel/runtime": "^7.20.13"
},
"devDependencies": {
"webpack": "^5.50.0",
"webpack-merge": "^5.7.3"
}
}