-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.03 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.03 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
{
"name": "cept",
"version": "0.7.0",
"private": true,
"type": "module",
"description": "A fully-featured Notion clone backed by Git. Client-only. Offline-first. Collaborative.",
"license": "MIT",
"workspaces": [
"packages/*",
"docs",
"e2e"
],
"scripts": {
"dev": "nx run-many -t dev",
"dev:web": "nx run @cept/web:dev",
"dev:desktop": "nx run @cept/desktop:dev",
"build": "nx run-many -t build",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:e2e": "nx run @cept/e2e:test",
"test:e2e:screenshots": "nx run @cept/e2e:test:screenshots",
"lint": "nx run-many -t lint",
"typecheck": "nx run-many -t typecheck",
"validate": "bun run lint && bun run typecheck && bun run test",
"release": "release-it",
"release:ci": "release-it --ci",
"release:dry-run": "release-it --dry-run"
},
"devDependencies": {
"@amiceli/vitest-cucumber": "6.2.0",
"@playwright/test": "1.58.2",
"@release-it/bumper": "7.0.5",
"@release-it/conventional-changelog": "10.0.5",
"@tailwindcss/vite": "4.2.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/isomorphic-git__lightning-fs": "4.4.8",
"@types/js-yaml": "4.0.9",
"@types/mdast": "4.0.4",
"@types/node": "25.3.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitejs/plugin-react": "5.1.4",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"fake-indexeddb": "6.2.5",
"jsdom": "28.1.0",
"nx": "22.5.3",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"release-it": "19.2.4",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "0.78.0",
"@isomorphic-git/lightning-fs": "4.6.2",
"@tiptap/core": "3.20.0",
"@tiptap/extension-code-block-lowlight": "3.20.0",
"@tiptap/extension-color": "3.20.0",
"@tiptap/extension-highlight": "3.20.0",
"@tiptap/extension-link": "3.20.0",
"@tiptap/extension-mention": "3.20.0",
"@tiptap/extension-placeholder": "3.20.0",
"@tiptap/extension-task-item": "3.20.0",
"@tiptap/extension-task-list": "3.20.0",
"@tiptap/extension-text-style": "3.20.0",
"@tiptap/extension-underline": "3.20.0",
"@tiptap/pm": "3.20.0",
"@tiptap/react": "3.20.0",
"@tiptap/starter-kit": "3.20.0",
"@tiptap/suggestion": "3.20.0",
"@types/katex": "0.16.8",
"buffer": "6.0.3",
"isomorphic-git": "1.37.2",
"js-yaml": "4.1.1",
"katex": "0.16.33",
"lowlight": "3.3.0",
"mermaid": "11.12.3",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-stringify": "11.0.0",
"tippy.js": "6.3.7",
"tiptap-extension-global-drag-handle": "0.1.18",
"unified": "11.0.5"
}
}