| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "nextchat",
- "private": false,
- "license": "mit",
- "scripts": {
- "mask": "npx tsx app/masks/build.ts",
- "mask:watch": "npx watch \"npm run mask\" app/masks",
- "dev": "concurrently -r \"npm run mask:watch\" \"next dev\"",
- "build": "npm run mask && cross-env BUILD_MODE=standalone next build",
- "start": "next start",
- "lint": "next lint",
- "export": "npm run mask && cross-env BUILD_MODE=export BUILD_APP=1 next build",
- "export:dev": "concurrently -r \"npm run mask:watch\" \"cross-env BUILD_MODE=export BUILD_APP=1 next dev\"",
- "test": "node --no-warnings --experimental-vm-modules $(npm bin)/jest --watch",
- "test:ci": "node --no-warnings --experimental-vm-modules $(npm bin)/jest --ci"
- },
- "dependencies": {
- "@fortaine/fetch-event-source": "^3.0.6",
- "@hello-pangea/dnd": "^16.5.0",
- "@jest/globals": "^30.0.5",
- "@modelcontextprotocol/sdk": "^1.0.4",
- "@next/third-parties": "^14.1.0",
- "@svgr/webpack": "^8.1.0",
- "@vercel/analytics": "^0.1.11",
- "@vercel/speed-insights": "^1.0.2",
- "axios": "^1.7.5",
- "bufferutil": "^4.0.9",
- "clsx": "^2.1.1",
- "csstype": "^3.1.3",
- "emoji-picker-react": "^4.9.2",
- "fuse.js": "^7.0.0",
- "heic2any": "^0.0.4",
- "html-to-image": "^1.11.11",
- "idb-keyval": "^6.2.1",
- "js-yaml": "^4.1.0",
- "katex": "^0.16.22",
- "lodash-es": "^4.17.21",
- "markdown-to-txt": "^2.0.1",
- "mermaid": "^11.9.0",
- "nanoid": "^5.0.3",
- "next": "^14.1.1",
- "openapi-client-axios": "^7.5.5",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-markdown": "^8.0.7",
- "react-router": "^7.8.0",
- "react-router-dom": "^6.15.0",
- "rehype-highlight": "^6.0.0",
- "rehype-katex": "^6.0.3",
- "remark-breaks": "^3.0.2",
- "remark-gfm": "^3.0.1",
- "remark-math": "^5.1.1",
- "rt-client": "https://github.com/Azure-Samples/aoai-realtime-audio-sdk/releases/download/js/v0.5.0/rt-client-0.5.0.tgz",
- "sass": "^1.59.2",
- "spark-md5": "^3.0.2",
- "use-debounce": "^9.0.4",
- "utf-8-validate": "^6.0.5",
- "zod": "^3.24.1",
- "zustand": "^4.3.8"
- },
- "devDependencies": {
- "@testing-library/jest-dom": "^6.6.3",
- "@types/jest": "^29.5.14",
- "@types/js-yaml": "4.0.9",
- "@types/lodash-es": "^4.17.12",
- "@types/node": "^20.11.30",
- "@types/react": "^18.2.70",
- "@types/react-dom": "^18.2.7",
- "@types/spark-md5": "^3.0.4",
- "concurrently": "^8.2.2",
- "cross-env": "^7.0.3",
- "eslint": "^8.49.0",
- "eslint-config-next": "13.4.19",
- "eslint-config-prettier": "^8.8.0",
- "eslint-plugin-prettier": "^5.1.3",
- "eslint-plugin-unused-imports": "^3.2.0",
- "jest": "^29.7.0",
- "prettier": "^3.0.2",
- "tsx": "^4.16.0",
- "typescript": "5.2.2",
- "watch": "^0.13.0",
- "webpack": "^5.88.1"
- }
- }
|