-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.77 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
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup": "node scripts/complete-setup.js",
"setup:verify": "node scripts/setup-verification.js",
"setup:storage": "node scripts/create-storage-bucket.js",
"setup:migrations": "node scripts/run-migrations.js",
"check:ontology": "npx tsx scripts/check-ontology-semantic.ts",
"validate:ontology": "bash ontology/validate.sh",
"export:suite-rdf": "npx tsx scripts/export-suite-rdf.ts && npm run validate:ontology",
"export:adam-beliefs": "npx tsx scripts/export-adam-beliefs.ts && npm run validate:ontology",
"extract": "npx tsx scripts/run-extraction-pipeline.ts",
"extract:dry": "npx tsx scripts/run-extraction-pipeline.ts --dry-run"
},
"overrides": {
"pdfjs-dist": "5.4.530"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@reactflow/node-resizer": "^2.2.14",
"@sparticuz/chromium-min": "^143.0.4",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.77.0",
"@tiptap/extension-color": "^3.18.0",
"@tiptap/extension-highlight": "^3.18.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-task-item": "^3.14.0",
"@tiptap/extension-task-list": "^3.14.0",
"@tiptap/extension-text-style": "^3.18.0",
"@tiptap/extension-underline": "^3.18.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@types/d3-force": "^3.0.10",
"@types/dagre": "^0.7.53",
"@types/node": "^20.19.25",
"@types/pdfkit": "^0.17.3",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@vercel/og": "^0.8.6",
"autoprefixer": "^10.4.22",
"clsx": "^2.1.1",
"d3-force": "^3.0.0",
"dagre": "^0.8.5",
"docx": "^9.5.1",
"dotenv": "^16.3.1",
"emoji-picker-react": "^4.16.1",
"express": "^4.18.2",
"geist": "^1.7.0",
"html5-qrcode": "^2.3.8",
"jspdf": "^3.0.4",
"lucide-react": "^0.563.0",
"mammoth": "^1.11.0",
"next": "^15.5.8",
"pdf-parse": "^2.4.5",
"pdf-to-png-converter": "^3.11.0",
"pdfkit": "^0.17.2",
"postcss": "^8.5.6",
"puppeteer-core": "^24.37.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactflow": "^11.11.4",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3",
"unpdf": "^1.4.0",
"web-push": "^3.6.7",
"xlsx": "^0.18.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/web-push": "^3.6.4",
"ignore-loader": "^0.1.2",
"playwright": "^1.58.2",
"png-to-ico": "^3.0.1",
"tsx": "^4.21.0"
}
}