-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.57 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
101
102
103
104
{
"name": "simple-rag",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "To-C multi-tenant personal RAG knowledge base — document writing, Q&A, and parsing. Per-user NewAPI key billing.",
"scripts": {
"dev": "tsx watch server/src/index.ts",
"dev:worker": "tsx watch server/src/jobs/worker.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"start:worker": "node dist/jobs/worker.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx server/src/db/migrate.ts",
"db:push": "drizzle-kit push",
"web:dev": "vite --config web/vite.config.ts",
"web:build": "vite build --config web/vite.config.ts",
"web:test": "vitest run --config web/vitest.config.ts",
"web:test:watch": "vitest --config web/vitest.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:workspace": "tsx server/test/workspace-context.test.ts",
"test:streaming-extractor": "tsx server/test/streaming-extractor.test.ts",
"test:db": "EMBEDDING_MODEL=mock tsx server/test/e2e.test.ts",
"design:preview": "python3 -m http.server 5199 --directory design/explorations",
"design:test": "node --test design/explorations/__tests__/explorations.test.mjs",
"test:edge": "tsx server/test/edge-files.test.ts",
"test:concurrent": "tsx server/test/concurrent.test.ts",
"test:llm": "tsx server/test/real-llm.test.ts",
"test:journey": "tsx server/test/user-journey.test.ts",
"test:e2e": "tsx server/test/playwright-real.ts",
"test:upload": "tsx server/test/upload.test.ts",
"test:upload-ui": "tsx server/test/upload-ui.test.ts",
"test:context": "tsx server/test/context.test.ts",
"test:hardened": "tsx server/test/hardened.test.ts",
"test:stress": "tsx server/test/stress.test.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/static": "^8.0.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-slot": "^1.3.0",
"bcryptjs": "^2.4.3",
"cmdk": "^1.1.1",
"docx": "^9.7.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.36.4",
"fastify": "^5.2.0",
"ioredis": "^5.4.2",
"katex": "^0.17.0",
"lucide-react": "^1.21.0",
"mammoth": "^1.8.0",
"marked": "^14.1.4",
"markstream-react": "^0.0.52",
"node-fetch": "^3.3.2",
"openai": "^4.77.0",
"p-limit": "^6.2.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1",
"pg": "^8.13.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"pptxgenjs": "^4.0.1",
"pptxtojson": "^1.0.0",
"sharp": "^0.33.5",
"stream-markdown-parser": "^1.0.5",
"turndown": "^7.2.0",
"uuid": "^11.0.4",
"zod": "^3.24.1"
},
"optionalDependencies": {
"@mozilla/readability": "^0.5.0",
"epub2": "^3.0.2",
"jsdom": "^25.0.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/turndown": "^5.0.5",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.9",
"drizzle-kit": "^0.30.1",
"jsdom": "^29.1.1",
"playwright": "^1.61.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=20"
}
}