package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "nextchat",
  3. "private": false,
  4. "license": "mit",
  5. "scripts": {
  6. "mask": "npx tsx app/masks/build.ts",
  7. "mask:watch": "npx watch \"yarn mask\" app/masks",
  8. "dev": "concurrently -r \"yarn run mask:watch\" \"next dev\"",
  9. "build": "yarn mask && cross-env BUILD_MODE=standalone next build",
  10. "start": "next start",
  11. "lint": "next lint",
  12. "export": "yarn mask && cross-env BUILD_MODE=export BUILD_APP=1 next build",
  13. "export:dev": "concurrently -r \"yarn mask:watch\" \"cross-env BUILD_MODE=export BUILD_APP=1 next dev\"",
  14. "app:dev": "concurrently -r \"yarn mask:watch\" \"yarn tauri dev\"",
  15. "app:build": "yarn mask && yarn tauri build",
  16. "prompts": "node ./scripts/fetch-prompts.mjs",
  17. "prepare": "husky install",
  18. "proxy-dev": "sh ./scripts/init-proxy.sh && proxychains -f ./scripts/proxychains.conf yarn dev"
  19. },
  20. "dependencies": {
  21. "@fortaine/fetch-event-source": "^3.0.6",
  22. "@hello-pangea/dnd": "^16.5.0",
  23. "@next/third-parties": "^14.1.0",
  24. "@svgr/webpack": "^6.5.1",
  25. "@vercel/analytics": "^0.1.11",
  26. "@vercel/speed-insights": "^1.0.2",
  27. "emoji-picker-react": "^4.9.2",
  28. "fuse.js": "^7.0.0",
  29. "heic2any": "^0.0.4",
  30. "html-to-image": "^1.11.11",
  31. "js-export-excel": "^1.1.4",
  32. "lodash-es": "^4.17.21",
  33. "mermaid": "^10.6.1",
  34. "mysql2": "^3.11.0",
  35. "nanoid": "^5.0.3",
  36. "next": "^14.1.1",
  37. "node-fetch": "^3.3.1",
  38. "react": "^18.2.0",
  39. "react-dom": "^18.2.0",
  40. "react-markdown": "^8.0.7",
  41. "react-router-dom": "^6.15.0",
  42. "rehype-highlight": "^6.0.0",
  43. "rehype-katex": "^6.0.3",
  44. "remark-breaks": "^3.0.2",
  45. "remark-gfm": "^3.0.1",
  46. "remark-math": "^5.1.1",
  47. "sass": "^1.59.2",
  48. "spark-md5": "^3.0.2",
  49. "use-debounce": "^9.0.4",
  50. "zustand": "^4.3.8"
  51. },
  52. "devDependencies": {
  53. "@tauri-apps/cli": "1.5.11",
  54. "@types/lodash-es": "^4.17.12",
  55. "@types/node": "^20.11.30",
  56. "@types/react": "^18.2.70",
  57. "@types/react-dom": "^18.2.7",
  58. "@types/react-katex": "^3.0.0",
  59. "@types/spark-md5": "^3.0.4",
  60. "concurrently": "^8.2.2",
  61. "cross-env": "^7.0.3",
  62. "husky": "^8.0.0",
  63. "lint-staged": "^13.2.2",
  64. "tsx": "^4.16.0",
  65. "typescript": "5.2.2",
  66. "watch": "^1.0.2",
  67. "webpack": "^5.88.1"
  68. },
  69. "resolutions": {
  70. "lint-staged/yaml": "^2.2.2"
  71. },
  72. "packageManager": "yarn@1.22.19"
  73. }