forked from JaneliaSciComp/SharkViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.11 KB
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
{
"name": "@janelia/sharkviewer",
"version": "1.7.9",
"description": "SWC neuron file viewer",
"main": "dist/shark_viewer.js",
"peerDependencies": {
"@janelia/three-orbit-unlimited-controls": "^1.0.3",
"core-js": "^3.6.5",
"three": "^0.125.0",
"three-obj-loader": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"html-webpack-plugin": "^3.2.0",
"minimist": "^1.2.5",
"prettier": "^1.15.1",
"rimraf": "^2.6.3",
"terser-webpack-plugin": "^4.2.2",
"three": "^0.125.0",
"three-obj-loader": "^1.1.3",
"three-orbit-controls": "^82.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --config webpack.config.js",
"build": "NODE_ENV=production npx babel ./src --out-dir ./dist --ignore '**/*.test.jsx' --ignore '**/*.test.js' && npx webpack --config webpack.prod.config.js",
"prebuild": "rimraf dist",
"dev": "NODE_ENV=development npx babel ./src --out-dir ./dist --ignore '**/*.test.jsx' --ignore '**/*.test.js' --source-maps && npx webpack",
"dev-watch": "NODE_ENV=development npx babel ./src --out-dir ./dist --ignore '**/*.test.jsx' --ignore '**/*.test.js' --source-maps --watch --verbose",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaneliaSciComp/SharkViewer.git"
},
"keywords": [
"neuroscience",
"3D",
"swc",
"neurons"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/JaneliaSciComp/SharkViewer/issues"
},
"homepage": "https://github.com/JaneliaSciComp/SharkViewer#readme"
}