forked from ChatGPTNextWeb/NextChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.69 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "nextchat",
"private": false,
"license": "mit",
"scripts": {
"mask": "npx tsx app/masks/build.ts",
"mask:watch": "npx watch \"yarn mask\" app/masks",
"dev": "npx prisma generate && npx prisma db push && concurrently -r \"yarn run mask:watch\" \"next dev --hostname 0.0.0.0 --port 23000\"",
"build": "yarn mask && npx prisma generate && cross-env BUILD_MODE=standalone next build",
"start": "next start",
"lint": "next lint",
"export": "yarn mask && cross-env BUILD_MODE=export BUILD_APP=1 next build",
"export:dev": "concurrently -r \"yarn mask:watch\" \"cross-env BUILD_MODE=export BUILD_APP=1 next dev\"",
"app:dev": "concurrently -r \"yarn mask:watch\" \"yarn tauri dev\"",
"app:build": "yarn mask && yarn tauri build",
"app:clear": "yarn tauri dev",
"prompts": "node ./scripts/fetch-prompts.mjs",
"prepare": "husky install",
"proxy-dev": "sh ./scripts/init-proxy.sh && proxychains -f ./scripts/proxychains.conf yarn dev",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.2",
"@ant-design/pro-components": "^2.8.2",
"@fortaine/fetch-event-source": "^3.0.6",
"@hello-pangea/dnd": "^16.5.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@modelcontextprotocol/sdk": "^1.0.4",
"@next/third-parties": "14.2.21",
"@prisma/client": "^6.1.0",
"@sijinhui/rc-queue-anim": "github:sijinhui/queue-anim#v2.0.2",
"@svgr/webpack": "^8.1.0",
"@vercel/analytics": "^1.1.2",
"@vercel/speed-insights": "^1.0.9",
"animejs": "^3.2.2",
"antd": "^5.22.6",
"axios": "^1.7.5",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"echarts": "^5.4.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",
"lodash-es": "^4.17.21",
"markdown-to-txt": "^2.0.1",
"mermaid": "^10.7.0",
"microsoft-cognitiveservices-speech-sdk": "^1.36.0",
"nanoid": "^5.0.9",
"next": "14.2.21",
"next-auth": "^4.24.11",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.13",
"openapi-client-axios": "^7.5.5",
"postcss-import": "^16.1.0",
"react": "18.3.0",
"react-dom": "18.3.0",
"react-highlight-words": "^0.20.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^7.1.1",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rt-client": "https://github.com/Azure-Samples/aoai-realtime-audio-sdk/releases/download/js/v0.5.0/rt-client-0.5.0.tgz",
"spark-md5": "^3.0.2",
"tailwind-merge": "^2.2.1",
"tiktoken": "^1.0.16",
"tiny-pinyin": "^1.3.2",
"use-debounce": "^10.0.0",
"zod": "^3.24.1",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "1.6.0",
"@tauri-apps/api": "^2.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/animejs": "^3.1.12",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "20.14.10",
"@types/nodemailer": "6.4.15",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/react-highlight-words": "0.20.0",
"@types/react-katex": "^3.0.4",
"@types/spark-md5": "^3.0.4",
"autoprefixer": "^10.4.17",
"bufferutil": "^4.0.8",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.21",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "0.6.5",
"prisma": "^6.1.0",
"sass": "^1.80.7",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.16.0",
"typescript": "^5.3.3",
"utf-8-validate": "^6.0.5",
"watch": "^1.0.2",
"webpack": "5.94.0"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"packageNotes": {
"bufferutil": "微软 rt-client 包的依赖",
"utf-8-validate": "微软 rt-client 包的依赖",
"next-ws": "挺好用的一个适配websocket包,但是要记得用它提供的命令先修复一下nextjs,然后中间件中也不能管理对应的路由",
"strip-ansi": "为了解决打包时,string-width,这个包中的require错误,挺离谱"
},
"packageManager": "[email protected]"
}