-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "openai-chatbot",
"version": "1.0.0",
"description": "A chatbot based on CHATGPT",
"main": "./dist/app.js",
"entry": "./src/index.ts",
"scripts": {
"dev": "deno run --allow-read --allow-env --allow-net ./src/index.ts",
"start": "yarn build && ./gpcs",
"build": "yarn clean && deno compile --output gpcs --allow-read --allow-env --allow-net ./src/index.ts",
"clean": "rm -rf gpcs",
"db:pg:generate": "drizzle-kit generate --name omnisive",
"db:pg:migrate": "node -r ts-node/register --env-file=.env ./src/db/postgresql/migration.ts",
"db:studio": "npx drizzle-kit studio",
"db:cassandra": "node -r ts-node/register --env-file=.env ./src/db/cassandra/migration.ts",
"lint": "deno lint",
"test": "deno test",
"format": "deno fmt",
"prepare": "husky"
},
"keywords": [
"gpcs",
"backend-api"
],
"author": "Vinit Parekh",
"license": "MIT",
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-polly": "^3.535.0",
"@aws-sdk/client-s3": "^3.565.0",
"@aws-sdk/client-secrets-manager": "^3.596.0",
"@aws-sdk/client-ses": "^3.535.0",
"@google-cloud/speech": "^6.5.0",
"@google-cloud/vertexai": "^1.1.0",
"@smithy/signature-v4": "^3.0.0",
"bcryptjs": "^2.4.3",
"cassandra-driver": "^4.7.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"drizzle-orm": "^0.30.10",
"express": "^4.21.1",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.9",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"postgres": "^3.4.5",
"prom-client": "^15.1.3",
"razorpay": "^2.9.0",
"redis": "^4.7.0",
"socket.io": "^4.6.2",
"stripe": "^12.10.0",
"winston": "^3.8.2",
"winston-loki": "^6.1.2"
},
"devDependencies": {
"@aws-sdk/types": "^3.310.0",
"@eslint/js": "^9.15.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.13",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^22.10.1",
"@types/nodemailer": "^6.4.7",
"@types/passport": "1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"drizzle-kit": "^0.21.2",
"globals": "^15.12.0",
"husky": "^9.0.11"
}
}