-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
132 lines (132 loc) · 4.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@biothings-explorer/bte-server",
"version": "3.0.0",
"description": "The server component of Biothings Explorer",
"main": "built/server.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc -b",
"clean": "rimraf ./built './**/tsconfig.tsbuildinfo'",
"build:clean": "pnpm run clean && pnpm run build",
"format": "prettier --check 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"lint": "eslint . --ext .ts",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"test-cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biothings/bte-server.git"
},
"keywords": [
"bte",
"biothings",
"single",
"hop",
"query"
],
"author": "BioThings Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/biothings/biothings_explorer/issues"
},
"homepage": "https://github.com/biothings/biothings_explorer#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/async": "^3.2.22",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/connect-history-api-fallback": "^1.5.4",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.10",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.8",
"@types/jsonata": "^1.5.1",
"@types/lodash": "^4.14.200",
"@types/lz4": "^0.6.4",
"@types/node": "^20.8.7",
"@types/pascal-case": "^1.1.2",
"@types/stream-json": "^1.7.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"artillery": "^1.7.9",
"cookie-parser": "~1.4.6",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"http-errors": "~1.6.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"lerna": "^6.6.2",
"morgan": "~1.9.1",
"nodemon": "^2.0.22",
"openapi-typescript": "^6.7.4",
"prettier": "^3.0.3",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"supports-color": "^7.2.0",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
},
"dependencies": {
"@biothings-explorer/query_graph_handler": "workspace:../query_graph_handler",
"@biothings-explorer/smartapi-kg": "workspace:../smartapi-kg",
"@biothings-explorer/types": "workspace:../types",
"@biothings-explorer/utils": "workspace:../utils",
"@bull-board/api": "^5.9.1",
"@bull-board/express": "^5.9.1",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/exporter-jaeger": "^1.19.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.50.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.50.0",
"@opentelemetry/instrumentation-express": "^0.43.0",
"@opentelemetry/instrumentation-http": "^0.53.0",
"@opentelemetry/resources": "^1.18.1",
"@opentelemetry/sdk-metrics": "^1.18.1",
"@opentelemetry/sdk-node": "^0.50.0",
"@opentelemetry/sdk-trace-node": "^1.18.1",
"@opentelemetry/semantic-conventions": "^1.27.0",
"@sentry/node": "^7.74.1",
"@sentry/profiling-node": "^1.2.1",
"axios": "^0.27.2",
"body-parser": "^1.20.2",
"bull": "^4.11.4",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^8.6.0",
"express": "^4.18.3",
"express-openapi-validator": "^5.1.6",
"express-rate-limit": "^7.1.5",
"express-winston": "^4.2.0",
"helmet": "^4.6.0",
"husky": "^4.3.8",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"lz4": "^0.6.5",
"nanoid": "^3.3.6",
"node-cron": "^2.0.3",
"npm": "^9.9.0",
"piscina": "^3.2.0",
"proper-lockfile": "^4.1.2",
"ps-node": "^0.1.6",
"snake-case": "^3.0.4",
"stream-chunker": "^1.2.8",
"stream-json": "^1.8.0",
"turbo": "^1.10.16",
"valid-url": "^1.0.9",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}