-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
55 lines (55 loc) · 2.11 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
{
"name": "paraview-glance",
"version": "0.0.0-semantically-release",
"description": "Web application for Visualizing Scientific and Medical datasets",
"repository": {
"type": "git",
"url": "git+https://github.com/kitware/pv-web-viewer.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kitware/pv-web-viewer/issues"
},
"homepage": "https://github.com/kitware/pv-web-viewer#readme",
"main": "./Distribution/glance.js",
"dependencies": {
"shelljs": "0.7.8",
"vtk.js": "5.15.4",
"font-awesome": "4.5.0",
"monologue.js": "0.3.5",
"mout": "1.0.0",
"paraviewweb": "2.5.29"
},
"devDependencies": {
"antd": "3.0.0",
"kw-doc": "1.1.1",
"kw-web-suite": "5.0.1",
"lodash": "^4.17.4",
"postcss-variables": "1.1.1",
"react": "16.1.1",
"react-dom": "16.1.1",
"webpack-bundle-analyzer": "2.9.1",
"http-server": "0.10.0"
},
"scripts": {
"validate": "prettier --config ./prettier.config.js --list-different \"Sources/**/*.js\"",
"reformat": "prettier --config ./prettier.config.js --write \"Sources/**/*.js\"",
"reformat-only": "prettier --single-quote --trailing-comma es5 --print-width 80 --arrow-parens always --write",
"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",
"start": "webpack-dev-server",
"build": "webpack --progress --colors",
"build:debug": "webpack --progress --colors --display-modules",
"build:release": "webpack --progress --colors --env.release",
"server": "http-server ./Distribution -p 9998",
"bundle": "inline-source --compress false --root ./Distribution ./Distribution/index.html ./Distribution/ParaViewGlance.html",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}