-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.77 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
{
"name": "viewer-core",
"version": "1.2.2",
"description": "Generic business logic for web-based medical imaging applications - edited by Tung LT",
"author": "OHIF Core Team",
"editor": "Tung LT",
"license": "MIT",
"repository": "viewer-core",
"main": "dist/index.umd.js",
"module": "dist/index.umd.js",
"sideEffects": "false",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development QUICK_BUILD=true webpack --watch --config .webpack/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
"build:dev": "cross-env NODE_ENV=development QUICK_BUILD=true webpack --config .webpack/webpack.dev.js",
"build:package": "yarn run build",
"prepublishOnly": "yarn run build",
"start": "yarn run dev",
"test:unit": "jest --watchAll",
"test:unit:ci": "jest --ci --runInBand --collectCoverage",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"analyze": "source-map-explorer 'dist/index.umd.js'"
},
"peerDependencies": {
"cornerstone-core": "^2.2.8",
"cornerstone-math": "^0.1.8",
"cornerstone-tools": "^4.0.0",
"cornerstone-wado-image-loader": "^3.0.6",
"dcmjs": "^0.16.2",
"dicom-parser": "^1.8.7"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"ajv": "^6.10.0",
"babel-plugin-transform-imports": "^2.0.0",
"core-js": "3.6.5",
"dcmjs": "^0.16.2",
"dicomweb-client": "^0.5.2",
"isomorphic-base64": "^1.0.2",
"lodash": "^4.17.19",
"mousetrap": "^1.6.5",
"query-string": "^6.11.1",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/compat-data": "^7.9.0",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "9.x",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.4.0",
"jest-junit": "^10.0.0",
"path": "^0.12.7",
"prettier": "^2.0.5",
"source-map-explorer": "^2.4.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^5.0.0-beta.1",
"worker-loader": "^2.0.0"
}
}