-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.76 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.76 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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"dev": "ts-node-dev --respawn --transpile-only api/index.ts",
"dev:once": "ts-node --transpile-only api/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"lint:check": "eslint . --ext .ts,.js --max-warnings 0",
"prisma-gen-acc": "npx prisma generate --no-engine",
"prisma-gen": "npx prisma generate",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/kms": "^5.2.1",
"@google-cloud/vertexai": "^1.10.0",
"@langchain/community": "^1.1.23",
"@langchain/core": "^1.1.32",
"@langchain/textsplitters": "^1.0.1",
"@octokit/rest": "^22.0.0",
"@prisma/client": "^6.13.0",
"@prisma/extension-accelerate": "^1.2.2",
"@stellar/stellar-sdk": "^14.5.0",
"@stellar/typescript-wallet-sdk": "^1.9.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"@types/winston": "^2.4.4",
"axios": "^1.8.3",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"cuid": "^3.0.0",
"dotenv": "^16.4.7",
"eventsource": "^4.0.0",
"express": "^4.21.2",
"express-rate-limit": "^8.2.1",
"firebase-admin": "^13.6.1",
"helmet": "^8.0.0",
"http-errors": "^2.0.0",
"lodash": "^4.17.23",
"morgan": "^1.10.0",
"nodemon": "^3.1.9",
"octokit": "^3.2.2",
"statsig-node": "^6.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"winston": "^3.18.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/eventsource": "^3.0.0",
"@types/express-rate-limit": "^5.1.3",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.23",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.3",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jiti": "^2.6.0",
"prisma": "^6.13.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.56.0"
},
"overrides": {
"fast-xml-parser": "^5.5.0",
"minimatch": "^10.2.1",
"glob": "^11.0.1",
"@tootallnate/once": "3.0.1",
"file-type": ">=21.3.1"
}
}