ChatGPT-Next-Web/package.json
2024-07-11 13:09:18 +08:00

100 lines
3.2 KiB
JSON

{
"name": "nextchat",
"private": false,
"license": "mit",
"scripts": {
"mask": "npx tsx app/masks/build.ts",
"mask:watch": "npx watch 'yarn mask' app/masks",
"dev": "yarn run mask:watch & npx prisma generate && npx prisma db push && next dev --hostname 0.0.0.0 --port 23000",
"build": "yarn mask && npx next telemetry disable && 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": "yarn mask:watch & cross-env BUILD_MODE=export BUILD_APP=1 next dev",
"app:dev": "yarn mask:watch & yarn tauri dev",
"app:build": "yarn mask && yarn tauri build",
"prompts": "node ./scripts/fetch-prompts.mjs",
"prepare": "husky install",
"proxy-dev": "sh ./scripts/init-proxy.sh && proxychains -f ./scripts/proxychains.conf yarn dev"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.0",
"@ant-design/pro-components": "^2.7.1",
"@fortaine/fetch-event-source": "^3.0.6",
"@hello-pangea/dnd": "^16.5.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/third-parties": "14.2.3",
"@prisma/client": "^5.13.0",
"@svgr/webpack": "^6.5.1",
"@vercel/analytics": "^0.1.11",
"@vercel/speed-insights": "^1.0.2",
"antd": "^5.15.1",
"bcryptjs": "^2.4.3",
"cron": "^3.1.6",
"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",
"mermaid": "^10.7.0",
"microsoft-cognitiveservices-speech-sdk": "^1.36.0",
"nanoid": "^5.0.3",
"next": "14.2.3",
"next-auth": "^4.24.7",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-highlight-words": "^0.20.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.3",
"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",
"sass": "^1.70.0",
"spark-md5": "^3.0.2",
"tailwind-merge": "^2.2.1",
"tiktoken": "1.0.14",
"tiny-pinyin": "^1.3.2",
"use-debounce": "^10.0.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "1.5.11",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/node": "20.12.8",
"@types/nodemailer": "6.4.15",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.7",
"@types/react-highlight-words": "^0.16.7",
"@types/react-katex": "^3.0.0",
"@types/spark-md5": "^3.0.4",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"eslint": "^8.55.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.13.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.16.0",
"typescript": "^5.3.3",
"watch": "^1.0.2",
"webpack": "^5.90.0"
},
"resolutions": {
"lint-staged/yaml": "^2.2.2"
},
"packageManager": "yarn@1.22.19"
}