-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
113 lines (113 loc) · 3.71 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
{
"name": "bee-observe",
"packageManager": "yarn@4.3.1",
"version": "0.0.5",
"author": "IBM Corp.",
"contributors": [
"Milan Gallas <milan.gallas@ibm.com>"
],
"license": "Apache-2.0",
"description": "Observability API server for bee-agent-framework",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc && cp -R src/protos dist/protos",
"proto:generate": "./scripts/open_telemetry_generate_protos/generate_protos.sh",
"start:infra": "docker compose up -d mongo redis mlflow",
"start:dev": "tsx watch ./src/index.ts | pino-pretty --singleLine",
"start:collector:local": "./scripts/open_telemetry_collector/otelcol --config=./scripts/open_telemetry_collector/otel-collector-config-local.yaml",
"stop:infra": "docker compose down",
"install:collector:local": "./scripts/open_telemetry_collector/install-collector.sh",
"dev": "yarn start:dev",
"start": "node ./dist/index.js",
"test": "./scripts/test_local.sh",
"coverage": "vitest run --coverage",
"release": "release-it",
"publish": "./scripts/publish.sh",
"lint": "yarn eslint src",
"lint:fix": "yarn eslint --fix src",
"format": "yarn prettier --check .",
"format:fix": "yarn prettier --write .",
"mikro-orm-esm": "NODE_OPTIONS=\"--loader ts-node/esm\" mikro-orm",
"migration:up": "yarn mikro-orm-esm migration:up",
"prepare": "husky",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@fastify/type-provider-json-schema-to-ts": "^4.0.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.0",
"@opentelemetry/instrumentation": "^0.57.0",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/dotenv-safe": "^8.1.6",
"@types/node": "^20.16.5",
"@types/semver": "^7",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"bee-agent-framework": "^0.0.57",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"ollama": "^0.5.10",
"pino-pretty": "^11.1.0",
"prettier": "^3.3.2",
"release-it": "^17.6.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vitest": "^2.1.3"
},
"dependencies": {
"@fastify/auth": "^5.0.1",
"@fastify/compress": "^8.0.1",
"@fastify/request-context": "^6.0.1",
"@fastify/swagger": "^9.0.4",
"@fastify/swagger-ui": "^5.2.0",
"@godaddy/terminus": "^4.12.1",
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "^0.7.13",
"@mikro-orm/cli": "6.2.9",
"@mikro-orm/core": "6.2.9",
"@mikro-orm/migrations-mongodb": "6.2.9",
"@mikro-orm/mongodb": "6.2.9",
"@mikro-orm/reflection": "6.2.9",
"bullmq": "^5.8.2",
"dotenv": "^16.4.5",
"dotenv-safe": "^9.1.0",
"fastify": "^5.1.0",
"fastify-plugin": "^5.0.1",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"json-schema-to-ts": "^3.1.0",
"pino": "^9.2.0",
"protobufjs": "^7.4.0",
"semver": "^7.6.3",
"typescript-json-schema": "^0.65.1"
},
"resolutions": {
"@types/node": "20.16.5"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}