forked from OHIF/react-vtkjs-viewport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.38 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-vtkjs-viewport-custom",
"version": "0.7.0-beta.2",
"description": "VTK.js image viewport component for React. Custom impl of origin source",
"author": "OHIF Contributors",
"license": "MIT",
"repository": "ladeirarodolfo/react-vtkjs-viewport-custom",
"main": "dist/index.umd.js",
"module": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "webpack --progress --colors --config ./.webpack/webpack.config.js -d",
"build:release": "webpack --progress --colors --config ./.webpack/webpack.config.js -p",
"build:examples": "webpack --progress --colors --config ./.webpack/webpack.dev.js -d",
"dev": "webpack-dev-server --config ./.webpack/webpack.dev.js --watch",
"lint": "eslint src/** --fix",
"start": "yarn run dev",
"predeploy": "yarn install && yarn run build:release",
"prepublishOnly": "yarn run build && yarn run build:release"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"vtk.js": "^11.14.0"
},
"dependencies": {
"date-fns": "^2.2.1",
"gl-matrix": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@semantic-release/npm": "5.1.13",
"@typescript-eslint/eslint-plugin": "1.x",
"@typescript-eslint/parser": "1.x",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cornerstone-core": "^2.3.0",
"cornerstone-math": "^0.1.8",
"cornerstone-tools": "^4.5.2",
"cornerstone-wado-image-loader": "^3.0.5",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"dicom-parser": "^1.8.3",
"dicomweb-client": "^0.5.2",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "1.x",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"kw-web-suite": "^8.0.0",
"lint-staged": "^9.2.5",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-cornerstone-viewport": "^1.0.0",
"react-dom": "^16.8.6",
"react-resize-detector": "^4.2.0",
"react-router-dom": "^5.0.1",
"semantic-release": "15.13.24",
"shader-loader": "^1.3.1",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"vtk.js": "^11.14.0",
"webpack": "4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2",
"worker-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"files": [
"dist"
]
}