package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "gpt4-langchain-pdf-chatbot",
  3. "version": "0.1.0",
  4. "private": true,
  5. "license": "MIT",
  6. "author": "Mayooear<twitter:@mayowaoshin>",
  7. "type": "module",
  8. "scripts": {
  9. "dev": "next dev",
  10. "build": "next build",
  11. "start": "react-scripts start",
  12. "start:stage": "cross-env REACT_APP_ENV=stage react-scripts start",
  13. "type-check": "tsc --noEmit",
  14. "lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx)\"",
  15. "format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
  16. "ingest": "tsx -r dotenv/config scripts/ingest-data.ts"
  17. },
  18. "dependencies": {
  19. "@microsoft/fetch-event-source": "^2.0.1",
  20. "@pinecone-database/pinecone": "0.0.12",
  21. "@radix-ui/react-accordion": "^1.1.1",
  22. "axios": "^1.4.0",
  23. "clsx": "^1.2.1",
  24. "dotenv": "^16.0.3",
  25. "langchain": "0.0.55",
  26. "lucide-react": "^0.125.0",
  27. "markdown-it": "^13.0.1",
  28. "nanoid": "^4.0.2",
  29. "next": "13.2.3",
  30. "pdf-parse": "1.1.1",
  31. "process": "^0.11.10",
  32. "react": "18.2.0",
  33. "react-dom": "18.2.0",
  34. "react-markdown": "^8.0.5",
  35. "react-scripts": "1.1.4",
  36. "tailwind-merge": "^1.10.0"
  37. },
  38. "devDependencies": {
  39. "@types/node": "^18.14.6",
  40. "@types/react": "^18.0.28",
  41. "@types/react-dom": "^18.0.11",
  42. "@typescript-eslint/parser": "^5.54.0",
  43. "autoprefixer": "^10.4.13",
  44. "eslint": "8.35.0",
  45. "eslint-config-next": "13.2.3",
  46. "postcss": "^8.4.21",
  47. "prettier": "^2.8.4",
  48. "tailwindcss": "^3.2.7",
  49. "tsx": "^3.12.3",
  50. "typescript": "^4.9.5"
  51. },
  52. "engines": {
  53. "node": ">=18"
  54. },
  55. "browser": {
  56. "fs": false
  57. },
  58. "keywords": [
  59. "starter",
  60. "gpt4",
  61. "pinecone",
  62. "typescript",
  63. "nextjs",
  64. "langchain",
  65. "law",
  66. "legal",
  67. "pdf",
  68. "openai"
  69. ]
  70. }