132 lines
3.8 KiB
JSON
132 lines
3.8 KiB
JSON
|
{
|
||
|
"name": "chat-flow",
|
||
|
"version": "0.1.0",
|
||
|
"private": true,
|
||
|
"scripts": {
|
||
|
"prepare": "husky install",
|
||
|
"dev": "npm run prepare:data && cross-env NODE_ENV='development' next dev",
|
||
|
"build": "next build",
|
||
|
"postbuild": "next-sitemap",
|
||
|
"start": "npm run dev",
|
||
|
"lint": "next lint",
|
||
|
"lint:fix": "next lint --fix",
|
||
|
"format": "prettier --check . -u",
|
||
|
"format:fix": "prettier --write . -u",
|
||
|
"postinstall": "npm run prepare:data",
|
||
|
"prepare:env": "npx vercel link && npx vercel env pull .env.local",
|
||
|
"prepare:data": "node gen/generate-chatgpt-by-category.js",
|
||
|
"test": "jest",
|
||
|
"test:watch": "jest --watch"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@chakra-ui/icons": "^2.0.17",
|
||
|
"@chakra-ui/react": "^2.5.1",
|
||
|
"@chakra-ui/spinner": "^2.0.13",
|
||
|
"@chakra-ui/system": "^2.5.1",
|
||
|
"@emotion/react": "^11.10.6",
|
||
|
"@emotion/styled": "^11.10.6",
|
||
|
"@formatjs/intl-localematcher": "^0.2.32",
|
||
|
"@planetscale/database": "^1.6.0",
|
||
|
"@prisma/client": "^4.11.0",
|
||
|
"@remirror/pm": "^2.0.4",
|
||
|
"@remirror/react": "^2.0.27",
|
||
|
"@remirror/react-editors": "^1.0.27",
|
||
|
"@tanstack/react-table": "^8.7.9",
|
||
|
"@types/jsonpath-plus": "^5.0.2",
|
||
|
"@vercel/analytics": "^0.1.11",
|
||
|
"autosize": "^6.0.1",
|
||
|
"chakra-ui-markdown-renderer": "^4.1.0",
|
||
|
"client-only": "^0.0.1",
|
||
|
"dagre": "^0.8.5",
|
||
|
"dotparser": "^1.1.1",
|
||
|
"encoding": "^0.1.13",
|
||
|
"expr-eval": "^2.0.2",
|
||
|
"formik": "^2.2.9",
|
||
|
"framer-motion": "^10.0.1",
|
||
|
"jsonpath-plus": "^7.2.0",
|
||
|
"kysely": "^0.23.5",
|
||
|
"kysely-planetscale": "^1.3.0",
|
||
|
"lodash-es": "^4.17.21",
|
||
|
"mermaid": "^10.0.2",
|
||
|
"negotiator": "^0.6.3",
|
||
|
"next": "^13.2.4",
|
||
|
"next-sitemap": "^4.0.2",
|
||
|
"node-fetch": "^2",
|
||
|
"openai": "^3.2.1",
|
||
|
"react": "18.2.0",
|
||
|
"react-color": "^2.19.3",
|
||
|
"react-copy-to-clipboard": "^5.1.0",
|
||
|
"react-dom": "18.2.0",
|
||
|
"react-json-view": "^1.21.3",
|
||
|
"react-markdown": "^8.0.5",
|
||
|
"react-spinners": "^0.13.8",
|
||
|
"react-syntax-highlighter": "^15.5.0",
|
||
|
"reactflow": "^11.6.0",
|
||
|
"remark": "^14.0.2",
|
||
|
"remark-gfm": "^3.0.1",
|
||
|
"remirror": "^2.0.26",
|
||
|
"rxjs": "^7.8.0",
|
||
|
"server-only": "^0.0.1",
|
||
|
"sharp": "^0.31.3",
|
||
|
"svg-pan-zoom": "^3.6.1",
|
||
|
"typescript": "4.9.5",
|
||
|
"unist-util-select": "^4.0.3",
|
||
|
"use-debounce": "^9.0.3",
|
||
|
"uuid": "^9.0.0",
|
||
|
"zustand": "^4.3.6"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@svgr/webpack": "^6.5.1",
|
||
|
"@testing-library/jest-dom": "^5.16.5",
|
||
|
"@testing-library/react": "^14.0.0",
|
||
|
"@types/autosize": "^4.0.1",
|
||
|
"@types/dagre": "^0.7.48",
|
||
|
"@types/js-yaml": "^4.0.5",
|
||
|
"@types/jsonpath": "^0.2.0",
|
||
|
"@types/lodash-es": "^4.17.6",
|
||
|
"@types/negotiator": "^0.6.1",
|
||
|
"@types/node": "18.14.5",
|
||
|
"@types/node-fetch": "^2.6.2",
|
||
|
"@types/papaparse": "^5.3.7",
|
||
|
"@types/react": "18.0.28",
|
||
|
"@types/react-color": "^3.0.6",
|
||
|
"@types/react-copy-to-clipboard": "^5.0.4",
|
||
|
"@types/react-dom": "18.0.11",
|
||
|
"@types/react-syntax-highlighter": "^15.5.6",
|
||
|
"@types/tunnel": "^0.0.3",
|
||
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
||
|
"autoprefixer": "^10.4.13",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "8.35.0",
|
||
|
"eslint-config-next": "13.2.3",
|
||
|
"eslint-config-prettier": "^8.6.0",
|
||
|
"eslint-plugin-prettier": "^4.2.1",
|
||
|
"husky": "^8.0.3",
|
||
|
"jest": "^29.4.3",
|
||
|
"jest-environment-jsdom": "^29.4.3",
|
||
|
"js-yaml": "^4.1.0",
|
||
|
"lint-staged": "^13.1.2",
|
||
|
"postcss": "^8.4.21",
|
||
|
"prettier": "^2.8.4",
|
||
|
"prisma": "^4.11.0",
|
||
|
"tailwindcss": "^3.2.7",
|
||
|
"tunnel": "^0.0.6",
|
||
|
"walkdir": "^0.4.1",
|
||
|
"yaml-loader": "^0.8.0"
|
||
|
},
|
||
|
"overrides": {
|
||
|
"react-json-view": {
|
||
|
"react": "$react",
|
||
|
"react-dom": "$react-dom"
|
||
|
},
|
||
|
"flux": {
|
||
|
"react": "$react",
|
||
|
"react-dom": "$react-dom"
|
||
|
}
|
||
|
},
|
||
|
"engines": {
|
||
|
"npm": ">=8.11.0",
|
||
|
"node": ">=16.19.0"
|
||
|
}
|
||
|
}
|