-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "chit-chat",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"repository": "https://github.com/chit-chat-org/chit-chat-v1",
"author": "Apurv Jha",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"@google/generative-ai": "^0.10.0",
"@nomic-ai/atlas": "^0.9.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"aws-sdk": "^2.1613.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cohere-ai": "^7.9.5",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.5.0",
"html-to-text": "^9.0.5",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.4",
"nodemailer": "^6.9.13",
"openai": "^4.42.0",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@babel/helper-compilation-targets": "^7.23.6",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.1",
"@types/express-fileupload": "^1.5.0",
"@types/express-session": "^1.18.0",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.15",
"@types/papaparse": "^5.3.14",
"@types/pdf-parse": "^1.1.4",
"nodemon": "^3.0.2",
"tsx": "^4.19.2"
}
}