-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.52 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.52 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
{
"name": "Scalytics Copilot",
"version": "1.8.0",
"description": "Private AI and Agent System",
"main": "server.js",
"type": "commonjs",
"exports": {
".": "./server.js"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"setup": "node setup/init-db.js",
"debug": "node --inspect server.js",
"generate-openapi-spec": "node scripts/generate-openapi-spec.js",
"commit-check": "./scripts/commit-check.sh",
"build:api-docs": "npm run generate-openapi-spec && npx @redocly/cli build-docs docs/openapi.json -o docs/api-docs.html",
"deps:check": "npm outdated --depth=0 || true",
"deps:audit": "npm audit --omit=dev || true"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@tailwindcss/postcss": "^4.1.18",
"axios": "1.13.5",
"bcrypt": "^5.1.1",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"dompurify": "^3.3.3",
"dotenv": "^16.6.1",
"eventsource": "^2.0.2",
"eventsource-parser": "^1.1.2",
"express": "^4.18.2",
"express-fileupload": "^1.5.2",
"express-rate-limit": "^7.1.5",
"franc": "^6.2.0",
"got": "^14.6.6",
"helmet": "^7.1.0",
"highlight.js": "^11.11.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.3",
"mammoth": "^1.9.0",
"marked": "^15.0.7",
"mcp-client": "^1.13.1",
"mermaid": "^11.12.3",
"morgan": "^1.10.0",
"node-fetch": "^2.7.0",
"papaparse": "^5.5.2",
"pdf-parse": "^1.1.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"react-toastify": "^11.0.5",
"recharts": "^2.15.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-mermaidjs": "^7.0.0",
"sqlite-vec": "^0.1.7-alpha.2",
"sqlite-vss": "^0.1.2",
"sqlite3": "^6.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tokenizers": "^0.13.3",
"uuid": "^9.0.1",
"web-streams-polyfill": "^4.2.0",
"winston": "^3.19.0",
"ws": "^8.19.0",
"xlsx": "^0.18.5"
},
"optionalDependencies": {
"tokenizers-linux-x64-gnu": "*"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.24",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.1.11",
"postcss": "^8.4.31",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"tailwindcss": "^4.1.18"
},
"engines": {
"node": ">=16.0.0"
},
"private": true,
"jest": {
"testMatch": [
"<rootDir>/test/**/*.test.js"
]
}
}