forked from ixoworld/qiforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.74 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.74 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "app",
"version": "1.1.76",
"description": "",
"author": "",
"private": false,
"engines": {
"node": ">=20"
},
"license": "UNLICENSED",
"scripts": {
"build": " nest build",
"dev": "nest start --watch",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": " nest start",
"start:dev": " nest start --watch",
"start:debug": " nest start --debug --watch",
"start:prod": " node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"db:clean": "docker-compose down -v",
"db:test": "ts-node src/scripts/test-connections.ts",
"migrate": "ts-node src/knowledge/migrations/run-migrations.ts",
"migrate:fresh": "pnpm run db:clean && pnpm run db:up && pnpm run migrate"
},
"dependencies": {
"@ixo/common": "workspace:^",
"@ixo/data-store": "workspace:^",
"@ixo/matrix": "workspace:^",
"@ixo/matrix-crdt": "^1.1.0",
"@ixo/oracles-chain-client": "workspace:^",
"@ixo/oracles-events": "workspace:^",
"@ixo/slack": "workspace:^",
"@ixo/sqlite-saver": "workspace:^",
"@langchain/community": "^1.0.3",
"@langchain/core": "^1.0.5",
"@langchain/langgraph": "^1.0.2",
"@langchain/langgraph-supervisor": "^1.0.0",
"@langchain/mcp-adapters": "^1.0.0",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-socket.io": "^11.1.3",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.1.5",
"@nestjs/throttler": "^6.4.0",
"@nestjs/websockets": "^11.1.3",
"@types/pg": "^8.11.14",
"@vercel/style-guide": "^5.2.0",
"better-sqlite3": "^12.4.6",
"cache-manager": "^7.2.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"deepagents": "^1.1.0",
"dotenv": "^16.4.7",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"ipfs-only-hash": "^4.0.0",
"langchain": "1.0.4",
"langfuse-langchain": "^3.38.4",
"lodash-es": "^4.17.21",
"matrix-js-sdk": "^37.11.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"socket.io": "4.8.0",
"yjs": "^13.6.27",
"zod": "^4.1.12",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "^8.57.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}