-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "meskeia-web-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npx kill-port 3050 || exit 0",
"dev": "next dev -p 3050",
"build": "node scripts/generate-llm-index.js && next build",
"start": "next start -p 3050",
"lint": "eslint",
"test": "npx playwright test",
"test:unit": "npx playwright test tests/formatters.spec.ts",
"test:a11y": "npx playwright test tests/accessibility.spec.ts",
"generate:llm-index": "node scripts/generate-llm-index.js",
"analyze": "set ANALYZE=true && npm run build"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@libsql/client": "^0.17.2",
"@modelcontextprotocol/sdk": "^1.28.0",
"@next/third-parties": "^16.2.1",
"@tanstack/react-query": "^5.95.2",
"@trpc/client": "^11.16.0",
"@trpc/next": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@vercel/mcp-adapter": "^0.3.2",
"algebrite": "^1.4.0",
"chart.js": "^4.5.1",
"exceljs": "^4.4.0",
"flag-icons": "^7.5.0",
"fuse.js": "^7.1.0",
"hls.js": "^1.6.15",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"js-yaml": "^4.1.1",
"jspdf": "^4.2.1",
"jstat": "^1.9.6",
"jszip": "^3.10.1",
"mathjs": "^15.1.1",
"next": "^16.2.1",
"next-themes": "^0.4.6",
"papaparse": "^5.5.3",
"qr-code-styling": "^1.9.2",
"react": "^19.2.4",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.4",
"sql.js": "^1.14.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@axe-core/playwright": "^4.11.0",
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.56.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.13",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19",
"baseline-browser-mapping": "^2.10.12",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"typescript": "^5"
}
}