-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.15 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.15 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
{
"name": "tiny-docy",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.10",
"engines": {
"bun": ">=1.3.10"
},
"scripts": {
"dev": "next dev",
"hocus": "bun scripts/hocus-server.ts",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:fuzz": "vitest run tests/unit/fuzz/",
"test:e2e": "bunx playwright test --project=chromium",
"test:perf": "bunx playwright test tests/e2e/performance.spec.ts --project=chromium",
"test:perf-collab": "bunx playwright test tests/e2e/performance-collab.spec.ts --project=chromium",
"test:load": "bun tests/load/yjs-load-harness.ts",
"test:stress": "vitest run tests/unit/stress/",
"test:soak": "bunx playwright test --project=soak",
"test:soak:quick": "SOAK_DURATION=300000 SOAK_HEADINGS=50 bunx playwright test --project=soak soak.spec.ts",
"test:soak:collab": "bunx playwright test --project=soak soak-collab.spec.ts",
"test:soak:collab:quick": "SOAK_DURATION=30000 SOAK_HEADINGS=10 SOAK_USERS=3 bunx playwright test --project=soak soak-collab.spec.ts",
"test:yjs-soak": "bunx playwright test --project=yjs-soak"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/dom": "^1.7.6",
"@hocuspocus/extension-logger": "^3.4.4",
"@hocuspocus/extension-redis": "^3.4.4",
"@hocuspocus/extension-sqlite": "^3.4.4",
"@hocuspocus/extension-throttle": "^3.4.4",
"@hocuspocus/provider": "^3.4.4",
"@hocuspocus/server": "^3.4.4",
"@tiptap/core": "^3.20.4",
"@tiptap/extension-code-block-lowlight": "^3.20.4",
"@tiptap/extension-collaboration": "^3.20.4",
"@tiptap/extension-collaboration-caret": "^3.20.4",
"@tiptap/extension-highlight": "^3.20.4",
"@tiptap/extension-horizontal-rule": "^3.20.4",
"@tiptap/extension-image": "^3.20.4",
"@tiptap/extension-list": "^3.20.4",
"@tiptap/extension-subscript": "^3.20.4",
"@tiptap/extension-superscript": "^3.20.4",
"@tiptap/extension-table": "^3.20.4",
"@tiptap/extension-table-of-contents": "^3.20.4",
"@tiptap/extension-text-align": "^3.20.4",
"@tiptap/extension-typography": "^3.20.4",
"@tiptap/extension-unique-id": "^3.20.4",
"@tiptap/extensions": "^3.20.4",
"@tiptap/markdown": "^3.20.4",
"@tiptap/pm": "^3.20.4",
"@tiptap/react": "^3.20.4",
"@tiptap/starter-kit": "^3.20.4",
"@tiptap/y-tiptap": "^3.0.2",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lodash.throttle": "^4.1.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.577.0",
"next": "16.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hotkeys-hook": "^5.2.4",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"y-protocols": "^1.0.7",
"yjs": "^13.6.30"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.0.3",
"eslint-config-next": "16.2.0",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"lint-staged": "^16.4.0",
"prosemirror-test-builder": "^1.1.1",
"sass": "^1.98.0",
"shadcn": "^4.1.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"ws": "^8.19.0"
},
"trustedDependencies": [
"sharp",
"sqlite3",
"unrs-resolver"
]
}