NextChat-U/package.json

38 lines
1.1 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
"version": "1.1",
"private": false,
2023-03-08 00:23:54 +09:00
"scripts": {
2023-03-24 01:01:00 +09:00
"dev": "cross-env COMMIT_ID=$(git rev-parse --short HEAD) next dev",
"build": "cross-env COMMIT_ID=$(git rev-parse --short HEAD) next build",
"start": "cross-env COMMIT_ID=$(git rev-parse --short HEAD) next start",
2023-03-08 00:23:54 +09:00
"lint": "next lint"
},
"dependencies": {
2023-03-10 02:01:40 +09:00
"@svgr/webpack": "^6.5.1",
2023-03-11 03:25:33 +09:00
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
2023-03-11 21:54:24 +09:00
"@types/react-katex": "^3.0.0",
2023-03-14 01:27:45 +09:00
"@vercel/analytics": "^0.1.11",
2023-03-24 01:01:00 +09:00
"cross-env": "^7.0.3",
2023-03-12 02:14:07 +09:00
"emoji-picker-react": "^4.4.7",
2023-03-08 00:23:54 +09:00
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
2023-03-11 21:54:24 +09:00
"eventsource-parser": "^0.1.0",
2023-03-24 01:01:00 +09:00
"git-rev-sync": "^3.0.2",
2023-03-11 03:25:33 +09:00
"next": "^13.2.3",
2023-03-10 02:01:40 +09:00
"openai": "^3.2.1",
2023-03-11 03:25:33 +09:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.5",
2023-03-11 21:54:24 +09:00
"rehype-katex": "^6.0.2",
"rehype-prism-plus": "^1.5.1",
"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",
2023-03-11 03:25:33 +09:00
"typescript": "4.9.5",
"zustand": "^4.3.6"
2023-03-08 00:23:54 +09:00
}
}