-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.56 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.56 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
{
"name": "educare-educational-ai-assistant",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"test:e2e": "playwright test --reporter=json",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:model-comparison": "playwright test tests/e2e/model-comparison.spec.ts --reporter=html",
"test:model-comparison:json": "playwright test tests/e2e/model-comparison.spec.ts --reporter=json",
"dev": "vite",
"build": "vite build",
"build:analyze": "vite build && echo 'Bundle analysis available at dist/stats.html'",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"quality": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run test",
"init-turso": "tsx scripts/initTurso.ts",
"migrate-to-turso": "tsx scripts/migrateToTurso.ts",
"create-test-data": "tsx scripts/createTestData.ts",
"update-turso-schema": "tsx scripts/updateTursoSchema.ts",
"cleanup-turso-schema": "tsx scripts/cleanupTursoSchema.ts",
"test-vector-search": "tsx scripts/testVectorSearch.ts",
"test-sharing": "tsx scripts/testSharing.ts",
"run-model-comparison": "tsx scripts/runModelComparison.ts",
"demo-model-comparison": "tsx scripts/demoModelComparison.ts",
"validate-model-comparison": "tsx scripts/validateModelComparison.ts",
"add-description-field": "tsx scripts/addDescriptionField.ts",
"prepare": "husky",
"deploy": "pnpm run build && gh-pages -d dist -r https://github.com/killkli/chatbot-test.git",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"dependencies": {
"@google/genai": "^1.18.0",
"@huggingface/transformers": "latest",
"@libsql/client": "^0.15.15",
"@themaximalist/llm.js": "^1.0.1",
"@types/qrcode": "^1.5.5",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"mammoth": "^1.10.0",
"pdfjs-dist": "^5.4.149",
"qrcode": "^1.5.4",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-highlight-code-lines": "^1.1.5",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.18.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"terser": "^5.44.0",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"vite": "^6.3.6",
"vitest": "^3.2.4"
}
}