-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "book-ai-demo",
"version": "1.0.0",
"description": "this application is using bard-ai to generate points based on a prompt, bard is free",
"main": "index.js",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start": "npm run build && node build/index.js",
"start:dev": "npx nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "adagora",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.19",
"@types/node": "^20.1.4",
"@types/pdf-parse": "^1.1.2",
"@types/pg": "^8.10.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-plugin-no-loops": "^0.3.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"langchain": "^0.0.162",
"openai": "^4.33.0",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3"
}
}