-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.32 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
{
"name": "brain",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/dev-wrapper.js",
"embed-facts": "npx tsx scripts/embed-facts.ts",
"dev:test": "node scripts/dev-test.js",
"kill:test-server": "bash ./scripts/kill-test-server.sh",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "node scripts/test-with-retry.js",
"test:e2e": "npm run kill:test-server && playwright test",
"test:smoke": "npm run kill:test-server && playwright test --grep @smoke --retries=1",
"test:group": "./scripts/test-group.sh",
"test:affected": "./scripts/test-affected.sh",
"test:e2e:ui": "npm run kill:test-server && playwright test --ui",
"test:e2e:headed": "npm run kill:test-server && playwright test --headed"
},
"dependencies": {
"@google/genai": "^1.38.0",
"@tiptap/extension-bubble-menu": "^3.15.3",
"@tiptap/extension-code-block-lowlight": "^3.15.3",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/extension-link": "^3.15.3",
"@tiptap/extension-placeholder": "^3.15.3",
"@tiptap/extension-table": "^3.15.3",
"@tiptap/extension-table-cell": "^3.15.3",
"@tiptap/extension-table-header": "^3.15.3",
"@tiptap/extension-table-row": "^3.15.3",
"@tiptap/extension-task-item": "^3.15.3",
"@tiptap/extension-task-list": "^3.15.3",
"@tiptap/pm": "^3.15.3",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.15.3",
"@tiptap/suggestion": "^3.15.3",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.7.0",
"date-fns": "^4.1.0",
"heic-convert": "^2.1.0",
"jose": "^6.1.3",
"jscodeshift": "^17.3.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.562.0",
"next": "^16.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"sqlite-vec": "^0.1.7-alpha.2",
"uuid": "^11.0.4"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/better-sqlite3": "^7.6.12",
"@types/heic-convert": "^2.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.3"
}
}