-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
99 lines (99 loc) · 2.86 KB
/
package.json
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
{
"name": "api",
"version": "0.1.0",
"private": true,
"dependencies": {
"@datadog/datadog-api-client": "^1.21.0",
"@octokit/types": "^12.4.0",
"@ory/client": "^1.9.0",
"@ory/kratos-client": "^1.2.0",
"@pinecone-database/pinecone": "^2.0.1",
"@qdrant/js-client-rest": "^1.12.0",
"@slack/bolt": "^3.16.0",
"@types/cors": "^2.8.17",
"@types/ioredis": "^5.0.0",
"@vespper/db": "*",
"@vespper/utils": "*",
"axios": "^1.6.2",
"body-parser": "^1.19.0",
"chromadb": "1.9.1",
"cookie-parser": "^1.4.6",
"coralogix-logger": "^1.1.28",
"cors": "^2.8.5",
"date-fns": "^3.0.6",
"dotenv-cli": "^7.4.2",
"express": "4.17.1",
"express-oauth2-jwt-bearer": "^1.6.0",
"langchain": "^0.0.209",
"langfuse": "^2.3.4",
"langfuse-langchain": "^2.3.4",
"llamaindex": "^0.1.16",
"mongoose": "^8.0.2",
"mongoose-field-encryption": "^7.0.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"octokit": "^3.1.2",
"posthog-node": "^4.0.1",
"prometheus-query": "^3.4.0",
"slackify-markdown": "^4.4.0",
"uuidv4": "^6.2.13"
},
"scripts": {
"start": "node dist/src/server.js",
"build": "npx tsc",
"watch": "npx nodemon -L --exec \"npx ts-node --require tsconfig-paths/register src/server.ts\" --ext ts",
"dev": "npx dotenv-cli -o -e ../../.env -e .env.dev yarn run watch",
"tunnel": "source .env && ngrok http 3000 --domain=$TUNNEL_URL",
"lint": "nx lint --ext ts",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"deploy": "npx ts-node ../../tools/scripts/deploy.ts api",
"runFile": "npx dotenv-cli -o -e ../../.env -e .env.dev npx ts-node"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.104",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.15",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"concurrently": "^8.2.2",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=10.16.3"
},
"engineStrict": true,
"nx": {
"includedScripts": [
"start",
"build",
"gcp-build",
"watch",
"dev",
"tunnel",
"test",
"prepare",
"typecheck",
"deploy"
]
}
}