-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
118 lines (118 loc) · 3.78 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
{
"name": "@biothings-explorer/bte-trapi",
"version": "3.0.0",
"description": "BioThings Explorer's TRAPI Knowledgebase Query API",
"main": "packages/bte-server/built/server.js",
"scripts": {
"setup": "pnpm run clone && pnpm i",
"clone": "./scripts/clone_packages.sh",
"pull": "pnpm run git pull",
"status": "pnpm run git status",
"git": "./scripts/run_git_packages.sh",
"ggit": "pnpm -r --no-bail exec git",
"build": "turbo run build",
"clean": "turbo run clean",
"build:clean": "pnpm run clean && pnpm run build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "pnpm lint --fix",
"test": "turbo run --parallel test --ui tui",
"test-cov": "turbo run --parallel test-cov --ui tui",
"siege-local": "artillery run -e local --output report_local.json --config performance-test/config.yaml performance-test/scenarios/creative.yaml",
"smartapi_sync": "node ./scripts/smartapi_sync.js",
"get_rev": "./scripts/get_rev.sh",
"basic-start": "node .",
"start": "./scripts/start_server.sh",
"stop": "./scripts/stop_server.sh",
"watch": "nodemon -e js,mjs,json,ts --watch './packages/**/src/*' './packages/**/data/*' --exec 'pnpm run build && node .'",
"watch-otel": "nodemon -e js,mjs,json,ts --watch './packages/**/src/*' './packages/**/data/*' --exec 'pnpm run build && node --require ./packages/bte-server/built/controllers/opentelemetry.js .'",
"debug": "DEBUG=biomedical-id-resolver,bte* pnpm run watch",
"debug-otel": "DEBUG=biomedical-id-resolver,bte* pnpm run watch-otel"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biothings/biothings_explorer.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": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"artillery": "^1.7.9",
"async": "^3.2.4",
"commitlint": "^18.2.0",
"cookie-parser": "~1.4.6",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"http-errors": "~1.6.3",
"jest": "^29.7.0",
"lerna": "^6.6.2",
"morgan": "~1.9.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"supports-color": "^7.2.0",
"turbo": "^2.0.14",
"typescript": "5.2.2"
},
"dependencies": {
"@bull-board/express": "^5.9.1",
"@sentry/node": "^7.74.1",
"@sentry/profiling-node": "^1.2.1",
"axios": "^0.28.0",
"body-parser": "^1.20.3",
"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.20.0",
"express-rate-limit": "^5.5.1",
"express-winston": "^4.2.0",
"helmet": "^4.6.0",
"husky": "^4.3.8",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lz4": "^0.6.5",
"nanoid": "^3.3.6",
"node-cron": "^2.0.3",
"openapi-validator-middleware": "^3.2.6",
"piscina": "^3.2.0",
"ps-node": "^0.1.6",
"snake-case": "^3.0.4",
"stream-chunker": "^1.2.8",
"stream-json": "^1.8.0",
"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"
}
},
"packageManager": "[email protected]"
}