-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"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": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"start:dev": "ts-node -r reflect-metadata src/main.ts",
"build": "cd frontend && npm install && npm run build && cd .. && npx nest build",
"test": "npx ts-node tests/smokeTest.ts"
},
"keywords": [
"sap",
"o2c",
"nlp",
"sql",
"graph"
],
"license": "ISC",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@libsql/client": "^0.17.2",
"@nestjs/common": "^11.1.18",
"@nestjs/core": "^11.1.18",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.18",
"@nestjs/serve-static": "^5.0.4",
"adm-zip": "^0.5.16",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.10.0",
"bullmq": "^5.73.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"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",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"officeparser": "^6.0.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pdf-parse": "^1.1.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@nestjs/cli": "^11.0.17",
"@nestjs/schematics": "^11.0.10",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.2",
"@types/passport-jwt": "^4.0.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}