forked from QuackbackIO/quackback
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.8 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.8 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
{
"name": "quackback",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.6.0",
"dotenv-cli": "^11.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "3.8.3",
"sharp": "^0.34.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"license": "AGPL-3.0",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"overrides": {
"@noble/ciphers": "2.0.0",
"@codemirror/state": "6.6.0"
},
"packageManager": "bun@1.3.7",
"private": true,
"resolutions": {
"zod": "^4.3.6"
},
"scripts": {
"setup": "./scripts/setup.sh",
"dev": "bun run --filter @quackback/web dev",
"build": "bun run --filter @quackback/web build",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest",
"test:api": "vitest apps/web/src/lib/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: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",
"import:uservoice": "bun scripts/import/cli.ts uservoice",
"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",
"prepare": "husky"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/language": "^6.12.3",
"@codemirror/view": "^6.41.0",
"@lezer/highlight": "^1.2.3",
"@tiptap/extension-image": "^3.22.3",
"@tiptap/extension-mention": "^3.22.3",
"@tiptap/extension-table": "^3.22.3",
"@tiptap/extension-table-cell": "^3.22.3",
"@tiptap/extension-table-header": "^3.22.3",
"@tiptap/extension-table-row": "^3.22.3",
"@tiptap/extension-task-item": "^3.22.3",
"@tiptap/extension-task-list": "^3.22.3",
"@tiptap/extension-underline": "^3.22.3",
"@uiw/codemirror-extensions-color": "^4.25.9",
"@uiw/react-codemirror": "^4.25.9",
"cmdk": "^1.1.1",
"tiptap-extension-resizable-image": "^2.1.0"
}
}