-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 2.33 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
{
"name": "@janelia/sharkviewer",
"version": "1.7.13",
"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.17.6",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"html-webpack-plugin": "^5.5.0",
"minimist": "^1.2.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.6",
"three": "^0.125.0",
"three-obj-loader": "^1.1.3",
"three-orbit-controls": "^82.1.0",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"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",
"docs": "NODE_ENV=production npx babel ./src --out-dir ./dist --ignore '**/*.test.jsx' --ignore '**/*.test.js' && npx webpack --config webpack.docs.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",
"dependencies": {
"stats.js": "^0.17.0"
}
}