-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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
{
"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.1.5",
"@radix-ui/react-tooltip": "^1.1.2",
"autoprefixer": "^10.4.20",
"dexie": "^4.0.9",
"github-markdown-css": "^5.6.1",
"hast": "^1.0.0",
"highlight.js": "^11.10.0",
"i18next": "^23.16.4",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"postcss": "^8.4.45",
"postcss-cli": "^11.0.0",
"rc-slider": "^11.1.5",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-loader-spinner": "^6.1.6",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.2",
"react-select": "^5.8.2",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.6",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwindcss": "^3.4.10",
"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.4.7",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/hast": "^3.0.4",
"@types/node": "^22.8.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.1",
"cypress": "^13.15.1",
"vite": "^5.4.3",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
}
}