forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.54 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
{
"name": "neuroglancer",
"description": "Visualization tool for 3-D volumetric data.",
"license": "Apache-2.0",
"version": "0.0.0-beta.0",
"main": "dist/module/main_module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/google/neuroglancer.git"
},
"engines": {
"node": ">=8"
},
"scripts": {
"generate-code": "node ./config/generate_code.js",
"build-min": "webpack --config ./config/webpack.config.js --env=min",
"build": "webpack --config ./config/webpack.config.js --env=dev",
"build-module": "webpack --config ./config/webpack.config.js --env=dev-module && rimraf ./tmp && tsc --outDir ./tmp && babel tmp --quiet --out-dir dist/module && copyfiles -u 2 dist/dev-module/*.css dist/module && copyfiles -u 2 dist/dev-module/*.bundle.* dist/module && rimraf ./tmp",
"build-python": "webpack --config ./config/webpack.config.js --env=python-dev",
"build-python-min": "webpack --config ./config/webpack.config.js --env=python-min",
"build:watch": "webpack --config ./config/webpack.config.js --watch",
"dev-server": "webpack-dev-server --config ./config/webpack.config.js",
"dev-server-python": "webpack-dev-server --config ./config/webpack.config.js --env=python-dev",
"test": "karma start ./config/karma.conf.js --single-run",
"test:watch": "karma start ./config/karma.conf.js --no-single-run",
"benchmark": "karma start ./config/karma.benchmark.js --single-run",
"benchmark:watch": "karma start ./config/karma.benchmark.js --no-single-run",
"prepublishOnly": "npm run test && npm run build-module",
"gulp": "gulp"
},
"devDependencies": {
"@types/jasmine": "^3.5.0",
"babel-cli": "^6.26.0",
"babel-plugin-import-noop": "^1.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"benchmark": "^2.1.4",
"clang-format": "^1.3.0",
"copy-webpack-plugin": "^6.1.1",
"copyfiles": "^2.1.1",
"gulp": "^4.0.2",
"gulp-clang-format": "^1.0.27",
"gulp-tslint": "^8.1.4",
"jasmine-core": "^3.5.0",
"karma": "^5.1.0",
"karma-benchmark": "^1.0.4",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-jasmine": "^3.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "^1.2.5",
"nunjucks": "^3.2.1",
"rimraf": "^3.0.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/codemirror": "0.0.82",
"@types/gl-matrix": "^2.4.5",
"@types/lodash": "^4.14.149",
"@types/pako": "^1.0.1",
"@types/sockjs-client": "^1.1.1",
"@types/webpack-env": "^1.15.3",
"codemirror": "^5.50.2",
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gl-matrix": "^3.1.0",
"glsl-editor": "^1.0.0",
"glsl-strip-comments-loader": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"ikonate": "^1.1.1",
"lodash": "^4.17.20",
"nifti-reader-js": "^0.5.4",
"numcodecs": "^0.1.1",
"pako": "^1.0.10",
"raw-loader": "^4.0.0",
"resize-observer-polyfill": "^1.5.1",
"sockjs-client": "^1.4.0",
"style-loader": "^1.1.2",
"svg-inline-loader": "^0.8.0",
"ts-loader": "^6.2.2",
"typescript": "4.0.3",
"url-loader": "^3.0.0",
"webpack": "^4.44.2"
}
}