-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.67 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
{
"name": "@aics/volume-viewer",
"version": "2.4.0",
"description": "volume renderer for multichannel 8-bit intensity data stored as 3D arrays",
"main": "es/index.js",
"module": "es/index.js",
"files": [
"es",
"README.md",
"package.json"
],
"scripts": {
"prepublish": "npm run build",
"build-docs": "node node_modules/documentation/bin/documentation.js build src/Histogram.ts src/View3d.ts src/Volume.ts src/VolumeMaker.ts src/VolumeLoader.ts -f html -o docs --shallow",
"build": "npm run transpileES",
"build-demo": "webpack --config webpack.demo.js",
"clean": "rimraf es/",
"format": "prettier --write src/**/*.js",
"dev": "webpack serve --config webpack.dev.js",
"start": "webpack serve --config webpack.dev.js",
"react-example": "webpack serve --config react-example/webpack.react.js",
"lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --ext .jsx --ext .js --ext .ts ./src",
"test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' mocha --require ts-node/register src/**/test/*.js",
"transpileES": "babel src --out-dir es --extensions .js,.ts --ignore '**/*.test.js'",
"typeCheck": "tsc -p tsconfig.json --noEmit"
},
"author": "Daniel Toloudis",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"three": "^0.137.4"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@types/chai": "^4.2.22",
"@types/dat.gui": "^0.7.7",
"@types/mocha": "^9.0.0",
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-loader": "^8.2.2",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"dat.gui": "^0.7.9",
"documentation": "^13.2.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"mocha": "^9.2.0",
"prettier": "^2.3.2",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}