-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 5.25 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 5.25 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "onequery-workspace",
"private": false,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@bufbuild/protobuf": "2.11.0",
"@bufbuild/protovalidate": "1.1.1",
"@connectrpc/connect": "2.1.1",
"@connectrpc/connect-node": "2.1.1",
"@connectrpc/validate": "0.2.0",
"@hono/node-server": "2.0.0",
"@hono/zod-validator": "0.7.6",
"@tabler/icons-react": "3.36.1",
"@tanstack/react-query": "5.90.20",
"@tanstack/react-router": "1.153.1",
"@tanstack/router-plugin": "1.153.1",
"@xstate/react": "6.1.0",
"@types/babel__core": "7.20.5",
"@types/bun": "1.3.11",
"@types/node": "25.0.8",
"@types/pg": "8.16.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"better-auth": "1.5.5",
"better-result": "2.8.2",
"hono": "4.12.14",
"hono-problem-details": "0.4.0",
"hono-rate-limiter": "0.5.3",
"mysql2": "3.20.0",
"next-themes": "0.4.6",
"pg": "8.17.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"remotion": "4.0.448",
"smol-toml": "1.6.1",
"sonner": "2.0.7",
"unstorage": "1.17.4",
"xstate": "5.30.0",
"zod": "4.3.5"
},
"catalogs": {
"testing": {
"@vitest/coverage-v8": "4.1.1",
"vitest": "4.1.1"
},
"tooling": {
"@cloudflare/vite-plugin": "1.32.3",
"@bufbuild/buf": "1.67.0",
"@bufbuild/protoc-gen-es": "2.11.0",
"@rolldown/plugin-babel": "0.2.1",
"@tailwindcss/postcss": "4.2.2",
"@tailwindcss/vite": "4.2.2",
"@vitejs/plugin-react": "6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"openclaw": "2026.4.10",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"postcss": "8.5.6",
"tailwindcss": "4.2.2",
"vite": "8.0.2",
"vite-tsconfig-paths": "6.1.1"
}
}
},
"scripts": {
"prepare": "test -d .git && lefthook install || true",
"dev": "bun run dev:setup && turbo dev --filter='!@onequery/connector'",
"dev:with-connector": "bun run dev:setup && turbo dev",
"dev:setup": "bun run scripts/dev-setup.ts",
"landing:build": "bunx turbo build --filter @onequery/landing",
"landing:deploy": "bun run --cwd apps/landing deploy",
"landing:deploy:preview": "bun run --cwd apps/landing deploy:preview",
"github:rulesets:check": "bun run --cwd packages/github-rulesets rulesets:check",
"github:rulesets:plan": "bun run --cwd packages/github-rulesets rulesets:plan",
"github:rulesets:apply": "bun run --cwd packages/github-rulesets rulesets:apply",
"build": "turbo build",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --check",
"format:fix": "oxfmt .",
"test": "turbo test",
"test:integration": "turbo run test:integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "turbo run test:e2e",
"test:e2e:ui": "cd apps/web && bun run test:e2e:ui",
"typecheck": "turbo run typecheck typecheck:root",
"typecheck:root": "tsgo --noEmit -p tsconfig.scripts.json",
"proto:generate": "buf generate --template proto/buf.gen.yaml proto",
"postproto:generate": "oxfmt packages/cli-server/src/connect/gen",
"proto:lint": "buf lint proto",
"proto:check": "bun run proto:lint && bun run proto:generate && git diff --exit-code -- packages/cli-server/src/connect/gen",
"db:generate": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit generate",
"db:migrate": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit migrate",
"db:push": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit push",
"db:seed:dev": "bun run scripts/run-local-env-command.ts --cwd packages/db -- bun src/scripts/seed-dev.ts",
"db:studio": "bun run scripts/run-local-env-command.ts --cwd packages/db -- drizzle-kit studio",
"db:reset": "bun run scripts/run-local-env-command.ts -- docker compose down -v && bun run dev:setup && bun run db:migrate && bun run db:seed:dev",
"clean": "find . -type d \\( -name 'node_modules' -o -name 'dist' -o -name 'dist-worker' -o -name '.turbo' -o -name 'coverage' -o -name '.cache' \\) -prune -exec rm -rf {} + 2>/dev/null; rm -rf .turbo bun.lock",
"bump": "ncu -u",
"knip": "knip"
},
"devDependencies": {
"@bufbuild/buf": "catalog:tooling",
"@bufbuild/protoc-gen-es": "catalog:tooling",
"@onequery/config": "workspace:*",
"@onequery/config-node": "workspace:*",
"@onequery/db": "workspace:*",
"@onequery/self-host-runtime": "workspace:*",
"@testing-library/jest-dom": "6.9.1",
"@types/bun": "catalog:",
"@types/nodemailer": "7.0.11",
"@typescript/native-preview": "7.0.0-dev.20260318.1",
"@vitest/coverage-v8": "catalog:testing",
"eslint-plugin-turbo": "2.9.1",
"happy-dom": "20.3.3",
"knip": "6.0.5",
"lefthook": "2.0.15",
"npm-check-updates": "19.3.1",
"openclaw": "catalog:tooling",
"oxfmt": "catalog:tooling",
"oxlint": "catalog:tooling",
"oxlint-tsgolint": "0.17.0",
"turbo": "2.9.1",
"vitest": "catalog:testing"
},
"resolutions": {
"@tanstack/query-core": "5.90.20"
},
"packageManager": "bun@1.3.11"
}