forked from inflection-zone/bot-content-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.84 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "bot-content-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && ts-node --files ./src/index.ts",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/index.ts"
},
"repository": {
"type": "git",
"url": "yes"
},
"keywords": [],
"author": "Dattatraya Londhe",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.325.0",
"@aws-sdk/client-ses": "^3.370.0",
"@aws-sdk/credential-provider-node": "^3.501.0",
"@aws-sdk/lib-storage": "^3.405.0",
"@aws-sdk/s3-request-presigner": "^3.552.0",
"@faker-js/faker": "^8.0.2",
"@langchain/community": "^0.3.15",
"@langchain/core": "^0.3.3",
"@langchain/openai": "^0.3.2",
"@langchain/pinecone": "^0.1.0",
"@pinecone-database/pinecone": "^3.0.1",
"@prisma/client": "^4.9.0",
"@types/adm-zip": "^0.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.1.7",
"@types/mime-types": "^2.1.1",
"@types/sharp": "^0.29.5",
"adm-zip": "^0.5.10",
"ansi-regex": "^6.0.1",
"approx-string-match": "^2.0.0",
"async": "^3.2.4",
"aws-sdk": "^2.991.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"bunyan": "^1.8.15",
"bunyan-prettystream": "^0.1.3",
"chai": "^5.1.0",
"check-password-strength": "^2.0.7",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^6.2.0",
"faiss-node": "^0.5.1",
"generate-password": "^1.7.0",
"glob": "^8.1.0",
"helmet": "^6.0.1",
"joi": "^17.9.0",
"json-rules-engine": "^6.1.2",
"jsonwebtoken": "^9.0.0",
"langchain-core": "^0.0.4",
"mime-types": "^2.1.34",
"mocha": "^10.4.0",
"mysql2": "^3.0.1",
"needle": "^3.2.0",
"node-cron": "^3.0.2",
"node-forge": "^1.3.1",
"node-xlsx": "^0.4.0",
"pdf-parse": "^1.1.1",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"pickleparser": "^0.2.1",
"pino": "^8.11.0",
"pino-http": "^8.3.3",
"pino-pretty": "^9.4.0",
"readdirp": "^3.6.0",
"reflect-metadata": "^0.1.13",
"sharp": "^0.33.3",
"supertest": "^6.3.4",
"timezone-support": "^3.1.0",
"triple-beam": "^1.3.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.12",
"uuid": "^9.0.0",
"uuid-apikey": "^1.5.3",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.14",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/shelljs": "^0.8.11",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.7.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^3.1.0",
"prisma": "^4.8.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"jest": {
"projects": [
"src/modules/ehr/jest.config.ts"
]
}
}