-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "itk-dicom-example",
"version": "1.0.1",
"description": "This example demonstrates how to load DICOM files using itk.js.",
"main": "index.js",
"scripts": {
"build": "webpack --progress --colors -p",
"start": "webpack-dev-server --mode development --content-base ./dist/ --watch-content-base"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InsightSoftwareConsortium/itk-js.git"
},
"keywords": [
"itk",
"webpack"
],
"author": "Matt McCormick <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/InsightSoftwareConsortium/itk-js/issues"
},
"homepage": "https://github.com/InsightSoftwareConsortium/itk-js#readme",
"dependencies": {
"core-js": "^3.6.4",
"curry": "^1.2.0",
"dicom-parser": "^1.8.3",
"expose-loader": "^0.7.5",
"itk": "^12.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.5.1",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}