-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.61 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
{
"name": "ai-chatbot",
"version": "0.0.1",
"description": "A NodeJS backend with the essential building block components to develop robust chatbots powered by AI, utilizing Telnyx Inference and Storage API Products.",
"main": "server/server.ts",
"type": "module",
"scripts": {
"build": "tsc --project ./server/tsconfig.json",
"server": "node ./app/server.js",
"dev:backend": "tsc-watch --project ./server --outDir ./app --onSuccess \"node ./app/server.js\"",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --config jest.config.cjs ./app/__tests__",
"test:debug": "cross-env DEBUG=jest NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.cjs ./app/__tests__"
},
"engines": {
"node": ">=20.0.0"
},
"repository": "https://github.com/team-telnyx/ai-chatbot",
"author": "ciaranp@telnyx.com",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^1.7.4",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"express": "^4.20.0",
"express-hcaptcha": "^0.0.3",
"gpt-3-encoder": "^1.1.4",
"html-entities": "^2.3.3",
"html-to-text": "^9.0.5",
"js-tiktoken": "^1.0.10",
"jsonwebtoken": "^9.0.2",
"mdast-util-from-markdown": "^1.3.0",
"mdast-util-gfm": "^2.0.2",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.2.0",
"micromark-extension-gfm": "^2.0.1",
"openai": "^4.24.7",
"pdf2json": "^3.0.5",
"pg": "^8.9.0",
"pg-pool": "^3.5.2",
"react": "^18.2.0",
"string-similarity": "^4.0.4",
"unist-builder": "^3.0.1",
"unist-util-filter": "^4.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/string-similarity": "^4.0.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-plugin-module-resolver": "4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"prettier": "^2.8.2",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.0",
"typescript": "*"
}
}