-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 926 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 926 Bytes
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
{
"name": "o2c-insight-engine",
"version": "1.1.0",
"description": "Natural language query system for SAP Order-to-Cash data with LLM-driven SQL and graph visualization",
"main": "src/server.js",
"scripts": {
"start": "node src/db/loader.js && node src/server.js",
"build": "cd frontend && npm install && npm run build",
"test": "node tests/smokeTest.js"
},
"keywords": [
"sap",
"o2c",
"nlp",
"sql",
"graph"
],
"license": "ISC",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@libsql/client": "^0.17.2",
"adm-zip": "^0.5.16",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.10.0",
"cors": "^2.8.6",
"csv-parse": "^6.2.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"groq-sdk": "^1.1.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"officeparser": "^6.0.7",
"pdf-parse": "^1.1.1"
}
}