-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.77 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
{
"name": "bee-observe",
"packageManager": "[email protected]",
"version": "0.0.4",
"license": "Apache-2.0",
"description": "Observability API server for bee-agent-framework",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"start:infra": "docker compose -f compose-before.yml up -d mongo redis mlflow",
"start:dev": "tsx watch ./src/index.ts | pino-pretty --singleLine",
"stop:infra": "docker compose -f compose-before.yml down",
"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": "^3.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/dotenv-safe": "^8.1.6",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"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",
"pino-pretty": "^11.1.0",
"prettier": "^3.3.2",
"release-it": "^17.6.0",
"ts-node": "^10.9.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@fastify/auth": "^4.6.1",
"@fastify/request-context": "^5.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@godaddy/terminus": "^4.12.1",
"@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": "^4.27.0",
"fastify-plugin": "^4.5.1",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"json-schema-to-ts": "^3.1.0",
"pino": "^9.2.0"
},
"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"
]
}
}