-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.38 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
{
"name": "ask-pdf",
"version": "1.0.0",
"description": "Ask question to a PDF file using AI and pgvector",
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"node --watch-path ./server.js --watch-path ./src --enable-source-maps ./server.js\"",
"prettier": "prettier --write .",
"start": "node --enable-source-maps ./server.js",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc",
"prepare": "husky install",
"precommit": "lint-staged"
},
"keywords": [
"heroku",
"openai",
"langchain",
"ai",
"pgvector"
],
"author": "Heroku DevRel <heroku-dev-advocacy@salesforce.com>",
"license": "CC0-1.0",
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@types/pg": "^8.11.5",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitest/coverage-v8": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.14.4",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.556.0",
"@aws-sdk/lib-storage": "^3.556.0",
"@fastify/early-hints": "^1.0.1",
"@fastify/static": "^7.0.3",
"@langchain/community": "^0.0.50",
"@langchain/openai": "^0.0.28",
"@mantine/core": "^7.8.0",
"@mantine/hooks": "^7.8.0",
"@mcansh/remix-fastify": "^3.2.2",
"@remix-run/css-bundle": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@tabler/icons-react": "^3.2.0",
"chokidar": "^3.6.0",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"framer-motion": "^11.1.7",
"isbot": "^5.1.4",
"langchain": "^0.1.34",
"openai": "^4.38.3",
"pdf-parse": "^1.1.1",
"pg": "^8.11.5",
"pgvector": "^0.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"volta": {
"node": "20.10.0",
"npm": "10.2.3"
}
}