-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.46 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
{
"name": "quackback",
"devDependencies": {
"@testing-library/jest-dom": "^7.0.1",
"@types/node": "^26.2.0",
"@typescript/typescript6": "^6.0.2",
"dotenv-cli": "^11.0.0",
"happy-dom": "^20.11.2",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"oxlint": "^1.78.0",
"oxlint-tsgolint": "^7.0.2000",
"prettier": "3.9.6",
"railway": "^3.10.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"license": "AGPL-3.0",
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"overrides": {
"@better-auth/oauth-provider": "1.6.30",
"@noble/ciphers": "2.0.0",
"@codemirror/state": "6.6.0",
"@tiptap/core": "3.30.1",
"@tiptap/pm": "3.30.1",
"@tiptap/suggestion": "3.30.1",
"axios": "1.19.0",
"browserslist": "4.28.8",
"form-data": "4.0.6",
"hono": "4.12.25",
"ip-address": "10.5.0",
"js-yaml": "4.3.1",
"kysely": "0.28.17",
"nanoid": "3.3.18",
"fast-uri": "3.1.5",
"postcss": "8.5.26",
"fast-xml-builder": "1.1.7",
"ws": "8.21.0",
"vite": "8.2.1",
"dompurify": "3.4.13"
},
"packageManager": "bun@1.4.0",
"private": true,
"resolutions": {
"zod": "^4.4.3"
},
"scripts": {
"setup": "./scripts/setup.sh",
"worktree:bootstrap": "./scripts/worktree-bootstrap.sh",
"dev": "bun run --filter @quackback/web dev",
"build": "bun run --filter @quackback/web build",
"lint": "oxlint",
"test": "vitest",
"test:api": "cd apps/web && vitest src/lib/server/domains/api/__tests__/api-integration.test.ts",
"test:e2e": "bun run --filter @quackback/web test:e2e",
"db:generate": "bun run --cwd packages/db db:generate",
"db:migrate": "bun run --cwd packages/db db:migrate",
"db:check-drift": "bun run --cwd packages/db db:check-drift",
"db:studio": "bun run --cwd packages/db db:studio",
"db:seed": "bun packages/db/src/seed.ts",
"db:reset": "bun packages/db/src/reset.ts",
"db:sync-counts": "bun packages/db/src/sync-counts.ts",
"db:generate-csv": "bun packages/db/src/generate-sample-csv.ts",
"reset": "bun packages/db/src/reset.ts",
"import": "bun scripts/import/cli.ts",
"ai:backfill": "bun apps/web/scripts/backfill-ai.ts",
"merge:backfill": "bun apps/web/scripts/backfill-merge-suggestions.ts",
"typecheck": "tsc --noEmit -p apps/web/tsconfig.json && tsc --noEmit -p apps/web/workspace-probe/tsconfig.json",
"prepare": "husky",
"evals": "bun --env-file=.env vitest run --config apps/web/evals/vitest.config.ts",
"typecheck:evals": "tsc -p apps/web/evals/tsconfig.json --noEmit"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/language": "^6.12.4",
"@codemirror/view": "^6.43.9",
"@lezer/highlight": "^1.2.3",
"@tiptap/extension-image": "^3.30.1",
"@tiptap/extension-mention": "^3.30.1",
"@tiptap/extension-table": "^3.30.1",
"@tiptap/extension-table-cell": "^3.30.1",
"@tiptap/extension-table-header": "^3.30.1",
"@tiptap/extension-table-row": "^3.30.1",
"@tiptap/extension-task-item": "^3.30.1",
"@tiptap/extension-task-list": "^3.30.1",
"@tiptap/extension-underline": "^3.30.1",
"@uiw/codemirror-extensions-color": "^4.25.11",
"@uiw/react-codemirror": "^4.25.11",
"cmdk": "^1.1.1",
"tiptap-extension-resizable-image": "^2.1.0"
}
}