package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "supabase-langchain-notion",
  3. "version": "0.1.0",
  4. "private": true,
  5. "license": "MIT",
  6. "author": "Mayooear",
  7. "type": "module",
  8. "scripts": {
  9. "dev": "next dev",
  10. "build": "next build",
  11. "start": "next start",
  12. "type-check": "tsc --noEmit",
  13. "lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx)\"",
  14. "format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
  15. "scrape-embed": "tsx -r dotenv/config scripts/scrape-embed.ts"
  16. },
  17. "dependencies": {
  18. "@microsoft/fetch-event-source": "^2.0.1",
  19. "@supabase/supabase-js": "^2.10.0",
  20. "cheerio": "1.0.0-rc.12",
  21. "clsx": "^1.2.1",
  22. "dotenv": "^16.0.3",
  23. "langchain": "^0.0.26",
  24. "next": "13.2.3",
  25. "react": "18.2.0",
  26. "react-dom": "18.2.0",
  27. "react-markdown": "^8.0.5",
  28. "tailwind-merge": "^1.10.0"
  29. },
  30. "devDependencies": {
  31. "@types/node": "^18.14.6",
  32. "@types/react": "^18.0.28",
  33. "@types/react-dom": "^18.0.11",
  34. "@typescript-eslint/parser": "^5.54.0",
  35. "autoprefixer": "^10.4.13",
  36. "eslint": "8.35.0",
  37. "eslint-config-next": "13.2.3",
  38. "postcss": "^8.4.21",
  39. "prettier": "^2.8.4",
  40. "tailwindcss": "^3.2.7",
  41. "tsx": "^3.12.3",
  42. "typescript": "^4.9.5"
  43. },
  44. "keywords": [
  45. "starter",
  46. "notion",
  47. "typescript",
  48. "nextjs",
  49. "langchain",
  50. "openai"
  51. ]
  52. }