-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
{
"name": "hra-api",
"version": "0.11.0",
"description": "The Human Reference Atlas (HRA) API deployed to https://apps.humanatlas.io/api/",
"keywords": [
"hra",
"human-reference-atlas"
],
"license": "MIT",
"homepage": "https://github.com/x-atlas-consortia/hra-api#readme",
"bugs": "https://github.com/x-atlas-consortia/hra-api/issues",
"repository": "github:x-atlas-consortia/hra-api",
"main": "dist/index.js",
"bin": {
"hra-api": "./dist/server.js"
},
"type": "module",
"scripts": {
"start": "npm-run-all build start:server",
"build": "npm-run-all build:openapi-spec build:code build:cache",
"build:openapi-spec": "npx @redocly/cli bundle ./src/openapi-spec/openapi.yaml -o hra-api-spec.yaml",
"build:code": "node ./scripts/build.js",
"build:cache": "node ./scripts/generate-cache.js",
"build:clients": "node ./scripts/build-clients.js",
"start:server": "nodemon ./dist/server.js -w dist",
"lint:openapi-spec": "npx @redocly/cli lint ./src/openapi-spec/openapi.yaml --format stylish"
},
"author": {
"name": "Bruce W. Herr II",
"email": "[email protected]",
"url": "https://github.com/bherr2"
},
"contributors": [
{
"name": "Aishwarya Vijay Sinhasane",
"url": "https://github.com/aishwaryavijaysinhasane"
},
{
"name": "Andreas Bueckle",
"url": "https://github.com/andreasbueckle"
}
],
"dependencies": {
"@jcubic/wayne": "^0.11.2",
"@loaders.gl/core": "^3.4.0",
"@loaders.gl/draco": "^3.4.0",
"@loaders.gl/gltf": "^3.4.0",
"@math.gl/core": "^4.0.0",
"@math.gl/culling": "^4.0.0",
"@rdfjs/formats-common": "^3.1.0",
"@rdfjs/to-ntriples": "^3.0.1",
"cannon-es": "^0.18.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-queue": "^0.0.13",
"glob": "^10.3.12",
"graphology": "^0.25.4",
"graphology-operators": "^1.6.0",
"graphology-shortest-path": "^2.0.2",
"helmet": "^7.1.0",
"hra-rui-locations-processor": "github:hubmapconsortium/hra-rui-locations-processor",
"http-proxy-middleware": "^2.0.6",
"is-stream": "^4.0.1",
"jsonld": "^8.3.1",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"mathjs": "^11.11.2",
"md5": "^2.3.0",
"mini-queue": "^0.0.14",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"nodeify-fetch": "^3.1.0",
"papaparse": "^5.4.1",
"shelljs": "^0.8.5",
"stream-browserify": "^3.0.0",
"tslib": "^2.5.0",
"uuid": "^9.0.1",
"yaml": "^2.4.2"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.6.0",
"esbuild": "^0.19.5",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5"
}
}