-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.43 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.43 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
105
106
107
108
109
{
"name": "cognipeer-console",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "NODE_ENV=development node --import tsx src/server/index.ts --dev",
"build": "next build",
"start": "NODE_ENV=production node --import tsx src/server/index.ts",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"format": "prettier --log-level warn --no-error-on-unmatched-pattern --write ./src/{,*/**/,*/**/**/,*/**/**/**/}*.{js,jsx,ts}",
"check-setup": "node scripts/check-setup.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.901.0",
"@aws-sdk/client-s3": "^3.906.0",
"@aws-sdk/client-s3vectors": "^3.901.0",
"@aws-sdk/client-sts": "^3.901.0",
"@aws-sdk/util-stream-node": "^3.370.0",
"@azure/search-documents": "^12.2.0",
"@cognipeer/agent-sdk": "^0.4.9",
"@cognipeer/to-markdown": "^2.0.1",
"@elastic/elasticsearch": "^8.19.1",
"@langchain/aws": "^1.3.5",
"@langchain/community": "^1.1.27",
"@langchain/core": "^1.1.39",
"@langchain/google-vertexai": "^2.1.26",
"@langchain/ollama": "^1.2.6",
"@langchain/openai": "^1.4.4",
"@mantine/charts": "^8.3.2",
"@mantine/core": "^8.3.2",
"@mantine/dates": "^8.3.2",
"@mantine/form": "^8.3.2",
"@mantine/hooks": "^8.3.2",
"@mantine/notifications": "^8.3.2",
"@mantine/spotlight": "^8.3.2",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/pg": "^8.18.0",
"@zilliz/milvus2-sdk-node": "^2.6.10",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^11.10.0",
"dayjs": "^1.11.18",
"fastify": "^5.8.1",
"handlebars": "^4.7.8",
"ioredis": "^5.9.3",
"jose": "^6.1.0",
"langchain": "^1.3.2",
"mantine-datatable": "^8.2.0",
"mongodb": "^6.20.0",
"mustache": "^4.2.0",
"next": "15.5.15",
"nodemailer": "^8.0.5",
"pg": "^8.20.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-json-view-lite": "^2.5.0",
"react-markdown": "^10.1.0",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"slugify": "^1.6.6",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@fastify/cookie": "^11.0.2",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/ioredis": "^4.28.10",
"@types/mustache": "^4.2.6",
"@types/node": "^20",
"@types/nodemailer": "^7.0.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "15.5.15",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"msw": "^2.12.10",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"overrides": {
"@mapbox/node-pre-gyp": "^2.0.3",
"@docsearch/css": "3.9.0",
"@docsearch/js": "3.9.0",
"@docsearch/react": "3.9.0",
"@getzep/zep-cloud": "3.18.0"
}
}