-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "hra-node-dist-vis",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm-run-all build:code build:sample-edges*",
"build:code": "node ./scripts/build.js",
"build:sample-edges1": "node src/distances.js docs/sample-data/Region_D265-12.csv 'Cell Type' Endothelial 1000 docs/sample-data/Region_D265-12.edges.csv",
"build:sample-edges2": "node src/distances.js docs/sample-data/Region_D265-11.csv type 'Lymphatic Endothelial Cell (and some immune cells)' 1000 docs/sample-data/Region_D265-11.edges.csv",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"hra-node-dist-vis": "./src/distances.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@deck.gl/carto": "8.8.27",
"@deck.gl/core": "8.8.27",
"@deck.gl/extensions": "8.8.27",
"@deck.gl/layers": "8.8.27",
"@material/web": "^1.3.0",
"@preact/signals-core": "^1.5.1",
"@vivjs/layers": "^0.16.0",
"papaparse": "^5.4.1"
},
"devDependencies": {
"esbuild": "^0.20.0",
"esbuild-plugin-inline-worker": "^0.1.1",
"glob": "^10.3.10",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.5"
}
}