-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
84 lines (84 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "openai-react-chat",
"version": "0.1.0",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/postcss": "^4.0.11",
"dexie": "^4.0.11",
"github-markdown-css": "^5.8.1",
"hast": "^1.0.0",
"highlight.js": "^11.11.1",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.0",
"rc-slider": "^11.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.1",
"react-loader-spinner": "^6.1.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.3.0",
"react-select": "^5.10.1",
"react-syntax-highlighter": "^15.6.1",
"react-toastify": "^11.0.5",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.0.12",
"typescript": "^5.2.2",
"unist-util-visit": "^5.0.0"
},
"overrides": {
"typescript": "^5.2.2"
},
"scripts": {
"build:css": "postcss src/index.css -o src/tailwind.css",
"start": "npm run build:css && vite",
"build": "npm run build:css && tsc && vite build",
"serve": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^14.1.0",
"vite": "^6.2.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
}
}