-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.8 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
{
"name": "bonsai-backend",
"version": "0.6.0",
"description": "Bonsai Backend",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run schemas:generate && tsc",
"start": "npm run db:migrate && tsx src/index.ts",
"dev": "npm run schemas:generate && npm run db:migrate && tsx src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"schemas:generate": "tsx src/scripts/generateWebSocketSchemas.ts",
"secrets:migrate": "tsx src/scripts/migrateSecretsToEncrypted.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "utter.one",
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@asteasolutions/zod-to-openapi": "^8.2.0",
"@aws-sdk/client-polly": "^3.1003.0",
"@aws-sdk/client-s3": "^3.991.0",
"@aws-sdk/client-ses": "^3.1044.0",
"@aws-sdk/s3-request-presigner": "^3.991.0",
"@azure/storage-blob": "^12.31.0",
"@discordjs/opus": "^0.10.0",
"@google-cloud/storage": "^7.19.0",
"@google/genai": "^1.35.0",
"@mistralai/mistralai": "^1.14.1",
"@roamhq/wrtc": "^0.10.0",
"@sendgrid/mail": "^8.1.6",
"@speechmatics/auth": "^0.1.0",
"@speechmatics/real-time-client": "^8.3.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/imap": "^0.8.43",
"@types/nodemailer": "^8.0.0",
"@types/swagger-ui-express": "^4.1.8",
"@xenova/transformers": "^2.17.2",
"assemblyai": "^4.23.1",
"avr-vad": "^1.0.9",
"bcrypt": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"class-validator-jsonschema": "^5.1.0",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"ffmpeg-static": "^5.3.0",
"handlebars": "^4.7.9",
"imap": "^0.8.19",
"isolated-vm": "^5.0.4",
"jsonwebtoken": "^9.0.3",
"mailparser": "^3.9.9",
"microsoft-cognitiveservices-speech-sdk": "^1.47.0",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.10",
"onnxruntime-node": "^1.26.0",
"openai": "^6.15.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"qs": "^6.14.1",
"reflect-metadata": "^0.2.2",
"speex-resampler": "^3.0.1",
"swagger-ui-express": "^5.0.1",
"tokenx": "^1.3.0",
"tsx": "^4.21.0",
"tsyringe": "^4.10.0",
"twilio": "^5.13.1",
"uuid": "^13.0.0",
"ws": "^8.18.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/ffmpeg-static": "^3.0.3",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.16.0",
"@types/qs": "^6.14.0",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.8",
"typescript": "^6.0.2"
}
}