-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "muimi-chat-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"generate-sql": "npx drizzle-kit generate --config ./drizzle.config.ts",
"migrate": "npx tsx migrate.ts",
"debug": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"preview": "node dist/src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@qdrant/js-client-rest": "^1.9.0",
"@types/crypto-js": "^4.2.2",
"@types/express-ws": "^3.0.4",
"@types/ws": "^8.5.10",
"argon2": "^0.40.3",
"axios": "^1.7.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"drizzle-orm": "^0.30.10",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"openai": "^4.47.3",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"randomized-string": "^2.0.1",
"redis": "^4.6.14",
"tiktoken": "^1.0.15",
"tsconfig-paths": "^4.2.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/pg": "^8.11.6",
"drizzle-kit": "^0.21.4",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.11.0"
}
}