forked from tarasglek/chatcraft.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.79 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
85
86
87
88
89
90
91
92
{
"name": "chatcraft.org",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-functions": "wrangler pages dev --port 9339 --r2 CHATCRAFT_ORG_BUCKET -- npm run dev",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint . --ext .ts,.tsx,.js",
"prettier": "prettier --write .",
"test": "vitest"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@codemirror/lang-javascript": "^6.2.1",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@szhsin/react-menu": "^4.1.0",
"@uiw/react-codemirror": "^4.21.21",
"compromise": "^14.11.2",
"cookie": "^0.6.0",
"dexie": "^3.2.4",
"dexie-export-import": "^4.1.1",
"dexie-react-hooks": "^1.1.7",
"esbuild-wasm": "^0.20.0",
"framer-motion": "^11.0.3",
"get-video-id": "^3.6.5",
"html2canvas": "^1.4.1",
"iframe-resizer-react": "^1.1.0",
"jose": "^5.2.1",
"katex": "^0.16.9",
"lodash-es": "^4.17.21",
"mermaid": "^10.8.0",
"nanoid": "^5.0.5",
"openai": "^4.26.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.22.0",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"react-use": "^17.5.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remove-markdown": "^0.5.0",
"tiktoken": "^1.0.13",
"typescript2openai": "^1.0.1",
"yaml": "^2.3.4",
"youtube-captions-scraper": "^2.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"@types/cookie": "^0.6.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/remove-markdown": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-pwa": "^0.17.5",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^1.2.2",
"vitest-environment-miniflare": "^2.14.2",
"wrangler": "^3.27.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"license": "MIT"
}