-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.96 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
{
"name": "oss-igaming-platform",
"version": "0.0.1",
"private": true,
"description": "Open-source, headless, plugin-based, AI-native igaming platform",
"homepage": "https://github.com/blurifycom/oss",
"license": "AGPL-3.0-only",
"author": "OSS iGaming contributors",
"repository": {
"type": "git",
"url": "https://github.com/blurifycom/oss.git"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"boundaries": "depcruise apps packages --config .dependency-cruiser.cjs",
"deprecations": "depretec --fail-on-found",
"verify:shape": "tsx tools/lint/verify-module-shape.ts",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"db:test:setup": "tsx tools/db/setup-test-db.ts",
"db:migrate:all": "node tools/db/migrate-all.mjs",
"codegen": "turbo run codegen",
"clean": "turbo run clean && rm -rf node_modules",
"format": "oxfmt && node tools/lint/ensure-final-newline.mjs",
"format:check": "oxfmt --check",
"sync:agents": "rulesync generate",
"prepare": "rulesync generate && husky",
"gen": "tsx tools/gen/gen.ts",
"create:app": "tsx tools/create/create-igaming-app.ts",
"create:service": "tsx tools/create/create-service.ts",
"regen": "tsx tools/gen/sync-tsconfig-paths.ts && tsx tools/gen/gen-openapi.ts && pnpm -F @openora/core generate && pnpm run gen:catalog",
"sync:tsconfig-paths": "tsx tools/gen/sync-tsconfig-paths.ts",
"gen:catalog": "tsx tools/gen/gen-catalog.ts",
"seed": "tsx tools/db/seed.ts",
"test:tools": "node --test \"tools/__tests__/*.test.mjs\"",
"verify": "turbo run typecheck test:unit && pnpm run test:tools && pnpm run lint && pnpm run verify:shape && pnpm run boundaries",
"verify:drift": "tsx tools/gen/sync-tsconfig-paths.ts --check && tsx tools/gen/gen-openapi.ts && tsx tools/gen/gen-catalog.ts && git diff --exit-code -- docs/openapi.json docs/catalog.json",
"eval:scaffold": "tsx tools/gen/eval-scaffold.ts",
"setup:agent": "tsx tools/setup/setup-agent.ts",
"setup:mcp": "tsx tools/setup/setup-mcp.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@commitlint/cli": "21.1.0",
"@commitlint/config-conventional": "21.1.0",
"@openora/core": "workspace:*",
"@openora/testing": "workspace:*",
"@orpc/contract": "1.14.5",
"@turbo/gen": "2.9.16",
"@types/node": "25.9.2",
"dependency-cruiser": "17.4.3",
"depretec": "0.2.3",
"husky": "9.1.7",
"oxfmt": "0.54.0",
"oxlint": "1.69.0",
"pg": "8.21.0",
"rulesync": "8.26.0",
"tsx": "4.22.4",
"turbo": "2.9.16",
"typescript": "6.0.3"
},
"engines": {
"node": ">=26.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.8.0"
}