NextChat-U/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2023-03-08 00:23:54 +09:00
{
"name": "chatgpt-next-web",
2023-03-24 01:01:00 +09:00
"private": false,
2023-06-15 02:34:21 +09:00
"license": "mit",
2023-03-08 00:23:54 +09:00
"scripts": {
"dev": "next dev",
2023-06-30 02:15:01 +09:00
"build": "cross-env BUILD_MODE=standalone next build",
2023-03-25 23:24:52 +09:00
"start": "next start",
2023-03-28 01:30:12 +09:00
"lint": "next lint",
2023-06-30 03:05:17 +09:00
"export": "cross-env BUILD_MODE=export BUILD_APP=1 next build",
"export:dev": "cross-env BUILD_MODE=export BUILD_APP=1 next dev",
2023-06-15 02:48:56 +09:00
"app:dev": "yarn tauri dev",
"app:build": "yarn tauri build",
"prompts": "node ./scripts/fetch-prompts.mjs",
2023-04-16 19:07:43 +09:00
"prepare": "husky install",
"proxy-dev": "sh ./scripts/init-proxy.sh && proxychains -f ./scripts/proxychains.conf yarn dev"
2023-03-08 00:23:54 +09:00
},
"dependencies": {
2023-05-20 20:58:12 +09:00
"@fortaine/fetch-event-source": "^3.0.6",
"@hello-pangea/dnd": "^16.3.0",
2023-03-10 02:01:40 +09:00
"@svgr/webpack": "^6.5.1",
2023-03-14 01:27:45 +09:00
"@vercel/analytics": "^0.1.11",
2023-03-12 02:14:07 +09:00
"emoji-picker-react": "^4.4.7",
2023-03-29 02:30:11 +09:00
"fuse.js": "^6.6.2",
"html-to-image": "^1.11.11",
"mermaid": "^10.2.3",
2023-07-09 17:15:58 +09:00
"nanoid": "^4.0.2",
"next": "^13.4.9",
2023-03-28 01:30:12 +09:00
"node-fetch": "^3.3.1",
2023-03-11 03:25:33 +09:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
2023-03-11 21:54:24 +09:00
"remark-math": "^5.1.1",
2023-03-13 04:06:21 +09:00
"sass": "^1.59.2",
"spark-md5": "^3.0.2",
"use-debounce": "^9.0.4",
"zustand": "^4.3.8"
2023-03-29 02:51:22 +09:00
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.0.11",
"@types/react-katex": "^3.0.0",
"@types/spark-md5": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "4.9.5",
"webpack": "^5.88.1"
2023-06-16 15:33:08 +09:00
},
"resolutions": {
"lint-staged/yaml": "^2.2.2"
2023-03-08 00:23:54 +09:00
}
}