forked from Kitware/glance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.66 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
114
115
116
117
118
{
"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 --progress --config build/webpack.prod.config.js",
"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": {
"@girder/components": "3.1.0",
"@kitware/vtk.js": "20.0.0",
"@linusborg/vue-simple-portal": "0.1.5",
"itk": "14.1.1",
"jszip": "3.7.1",
"mousetrap": "1.6.5",
"pug": "3.0.2",
"pug-plain-loader": "1.1.0",
"typeface-roboto": "1.1.13",
"vue": "2.6.14",
"vue-cli-plugin-vuetify": "2.4.3",
"vuetify": "2.5.9",
"vuex": "3.6.2",
"webworker-promise": "0.4.4",
"workbox-sw": "6.3.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/runtime": "7.15.4",
"@mdi/font": "6.2.95",
"@vue/eslint-config-airbnb": "5.3.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.3.0",
"deep-merge": "1.0.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-webpack": "0.13.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.19.1",
"expose-loader": "3.0.0",
"html-webpack-plugin": "5.3.2",
"inline-source-cli": "2.0.0",
"kw-doc": "3.1.2",
"mini-css-extract-plugin": "2.4.1",
"postcss-loader": "6.1.1",
"postcss-preset-env": "6.7.0",
"prettier": "2.4.1",
"sass": "~1.32",
"sass-loader": "12.1.0",
"semantic-release": "18.0.0",
"style-loader": "3.3.0",
"terser-webpack-plugin": "5.2.4",
"vue-loader": "15.9.8",
"vue-style-loader": "4.1.3",
"vue-template-compiler": "2.6.14",
"vuetify-loader": "1.7.3",
"webpack": "5.57.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.3.1",
"webpack-merge": "5.8.0",
"workbox-webpack-plugin": "6.3.0",
"worker-loader": "3.0.8",
"write-file-webpack-plugin": "4.5.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}