-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.7 KB
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": "fizzbuzz-enterprise-edition",
"version": "4.2.0",
"description": "Enterprise-grade FizzBuzz solution with event-driven architecture, AI-powered divisibility detection, and comprehensive observability",
"private": true,
"workspaces": [
"packages/*",
"services/fizz-service",
"services/buzz-service",
"services/fizzbuzz-aggregator",
"services/api-service",
"mcp-server",
"tests/integration"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test:integration": "pnpm --filter @fizzbuzz-enterprise/integration-tests test",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"typecheck": "tsc --noEmit",
"dev:fizz": "npm run dev --workspace=services/fizz-service",
"dev:buzz": "npm run dev --workspace=services/buzz-service",
"dev:aggregator": "npm run dev --workspace=services/fizzbuzz-aggregator",
"dev:api": "npm run dev --workspace=services/api-service",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"kafka:create-topics": "./scripts/create-topics.sh",
"db:migrate": "npm run migrate --workspace=services/api-service",
"docs:generate": "typedoc --out docs/api src",
"eval": "pnpm --filter @fizzbuzz-enterprise/evals eval",
"eval:fizz": "pnpm --filter @fizzbuzz-enterprise/evals eval:fizz",
"eval:buzz": "pnpm --filter @fizzbuzz-enterprise/evals eval:buzz",
"eval:view": "pnpm --filter @fizzbuzz-enterprise/evals view",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuaisaact/fizzbuzz-enterprise-edition-2026.git"
},
"keywords": [
"fizzbuzz",
"enterprise",
"kafka",
"event-driven",
"microservices",
"llm",
"ai",
"observability"
],
"author": "FizzBuzz Platform Team <platform@fizzbuzz.enterprise>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/joshuaisaact/fizzbuzz-enterprise-edition-2026/issues"
}
}