forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 902 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "my-neuroglancer-project",
"description": "Example project that depends on neuroglancer.",
"scripts": {
"build-min": "webpack --config ./config/webpack.config.js --display-modules --env=min",
"build": "webpack --config ./config/webpack.config.js --display-modules --env=dev",
"build-python": "webpack --config ./config/webpack.config.js --display-modules --env=python-dev",
"build-python-min": "webpack --config ./config/webpack.config.js --display-modules --env=python-min",
"dev-server": "webpack-dev-server --config ./config/webpack.config.js",
"dev-server-python": "webpack-dev-server --config ./config/webpack.config.js --env=python-dev"
},
"dependencies": {
"neuroglancer": "^0.0.0-beta.0",
"webpack": "^3.4.1"
},
"devDependencies": {
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.6.1",
"webpack-dev-server": "^2.2.0"
}
}