-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "paraview-glance",
"version": "0.0.0-semantically-release",
"description": "Web application for Visualizing Scientific and Medical datasets",
"keywords": [
"3d",
"visualization",
"webgl",
"medical",
"scientific",
"vtk",
"paraview",
"geometry",
"point cloud",
"mesh"
],
"repository": {
"type": "git",
"url": "https://github.com/kitware/paraview-glance.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/paraview-glance/issues"
},
"homepage": "https://github.com/kitware/paraview-glance#readme",
"scripts": {
"validate": "prettier --config ./prettier.config.js --list-different \"src/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"src/**/*.js\"",
"doc": "kw-doc -c ./documentation/config.js",
"doc:www": "kw-doc -c ./documentation/config.js -s",
"doc:publish": "kw-doc -c ./documentation/config.js -mp",
"build": "webpack --config build/webpack.dev.config.js",
"build:release": "webpack --config build/webpack.prod.config.js -p",
"version": "node ./build/writeVersion.js",
"dev": "webpack-dev-server --config build/webpack.dev.config.js",
"bundle": "inline-source --compress false --root ./dist ./dist/index.html ./dist/ParaViewGlance.html",
"commit": "git cz",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run version && npm run bundle"
},
"author": "Kitware",
"dependencies": {
"@linusborg/vue-simple-portal": "^0.1.3",
"itk": "10.2.1",
"mousetrap": "^1.6.3",
"typeface-roboto": "0.0.54",
"vtk.js": "13.7.0",
"vue": "2.6.10",
"vuetify": "2.2.0",
"vuex": "^3.1.1",
"webworker-promise": "0.4.1",
"workbox-sw": "2.1.2",
"wslink": "^0.1.12"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@mdi/font": "4.4.95",
"deep-merge": "^1.0.0",
"eslint-plugin-vue": "5.2.3",
"fibers": "^4.0.1",
"kw-doc": "1.3.0",
"kw-web-suite": "9.0.0",
"mini-css-extract-plugin": "^0.8.0",
"paraview-glance": "3.5.10",
"sass": "^1.22.12",
"sass-loader": "^7.3.1",
"vue-loader": "15.7.1",
"vue-style-loader": "4.1.0",
"vue-template-compiler": "2.6.10",
"vuetify-loader": "github:vuetifyjs/vuetify-loader#3a6a2ffcfc4233dbfdd88d549d55e6cea79ef4fb",
"webpack-merge": "4.1.2",
"workbox-webpack-plugin": "2.1.2",
"write-file-webpack-plugin": "^4.3.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}