mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-18 10:03:55 +00:00
72 lines
1.9 KiB
JSON
72 lines
1.9 KiB
JSON
{
|
|
"name": "docgpt",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"prepare": "husky install",
|
|
"format": "prettier --config \"./.prettierrc.js\" --write \"./src/**/*.{ts,tsx,scss}\""
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/icons": "^2.0.17",
|
|
"@chakra-ui/react": "^2.5.1",
|
|
"@chakra-ui/system": "^2.5.1",
|
|
"@emotion/react": "^11.10.6",
|
|
"@emotion/styled": "^11.10.6",
|
|
"@next/font": "13.1.6",
|
|
"@reduxjs/toolkit": "^1.9.3",
|
|
"@tanstack/react-query": "^4.24.10",
|
|
"@types/nprogress": "^0.2.0",
|
|
"axios": "^1.3.3",
|
|
"crypto": "^1.0.1",
|
|
"dayjs": "^1.11.7",
|
|
"eventsource-parser": "^0.1.0",
|
|
"formidable": "^2.1.1",
|
|
"framer-motion": "^9.0.6",
|
|
"hyperdown": "^2.4.29",
|
|
"immer": "^9.0.19",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"mongoose": "^6.10.0",
|
|
"next": "13.1.6",
|
|
"nodemailer": "^6.9.1",
|
|
"nprogress": "^0.2.0",
|
|
"openai": "^3.2.1",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-hook-form": "^7.43.1",
|
|
"react-markdown": "^8.0.5",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"rehype-katex": "^6.0.2",
|
|
"remark-gfm": "^3.0.1",
|
|
"remark-math": "^5.1.1",
|
|
"sass": "^1.58.3",
|
|
"sharp": "^0.31.3",
|
|
"tunnel": "^0.0.6",
|
|
"uuid": "^9.0.0",
|
|
"zustand": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/formidable": "^2.0.5",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/node": "18.14.0",
|
|
"@types/nodemailer": "^6.4.7",
|
|
"@types/react": "18.0.28",
|
|
"@types/react-dom": "18.0.11",
|
|
"@types/react-syntax-highlighter": "^15.5.6",
|
|
"@types/tunnel": "^0.0.3",
|
|
"@types/uuid": "^9.0.1",
|
|
"eslint": "8.34.0",
|
|
"eslint-config-next": "13.1.6",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.2",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "4.9.5"
|
|
},
|
|
"lint-staged": {
|
|
"./src/**/*.{ts,tsx,scss}": "npm run format"
|
|
}
|
|
}
|