-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (42 loc) · 1.15 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
{
"name": "dwv-simplistic",
"version": "0.10.0-beta.0",
"description": "Simple medical viewer using DWV (DICOM Web Viewer).",
"keywords": [
"DICOM",
"medical",
"imaging"
],
"license": "GPL-3.0",
"author": "ivmartel <ivmartel@gmail.com>",
"homepage": "https://ivmartel.github.io/dwv-simplistic/",
"repository": {
"type": "git",
"url": "git://github.com/ivmartel/dwv-simplistic.git"
},
"main": "dist/dwvsimplistic.min.js",
"dependencies": {
"dwv": "0.34.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin-js": "^3.0.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint -c 'eslint.config-full.mjs' 'src/**/*.js' '*.js'"
}
}