-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
110 lines (110 loc) · 3.31 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"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",
"typecheck": "tsc",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "vitest"
},
"dependencies": {
"@antonz/runno": "^0.6.1",
"@chakra-ui/react": "^2.8.2",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-yaml": "^6.1.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@eslint/compat": "^1.2.3",
"@szhsin/react-menu": "^4.2.2",
"@uiw/react-codemirror": "^4.23.6",
"browser-image-compression": "^2.0.2",
"compromise": "^14.14.2",
"cookie": "^1.0.0",
"dexie": "^4.0.10",
"dexie-export-import": "^4.1.4",
"dexie-react-hooks": "^1.1.7",
"esbuild-wasm": "^0.24.0",
"exponential-backoff": "^3.1.1",
"feed": "^4.2.2",
"framer-motion": "^11.5.6",
"get-video-id": "^4.1.7",
"html2canvas": "^1.4.1",
"iframe-resizer-react": "^1.0.8",
"jose": "^5.9.6",
"katex": "^0.16.11",
"linkedom": "^0.18.5",
"lodash-es": "^4.17.21",
"mammoth": "^1.8.0",
"mermaid": "^11.4.0",
"nanoid": "^5.0.8",
"nomnoml": "^1.6.2",
"openai": "^4.47.1",
"p-limit": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.2",
"react-syntax-highlighter": "^15.6.1",
"react-textarea-autosize": "^8.5.5",
"react-use": "^17.5.1",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remove-markdown": "^0.5.5",
"tiktoken": "^1.0.17",
"typescript2openai": "^1.0.1",
"yaml": "^2.6.0",
"youtube-captions-scraper": "^2.0.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241106.0",
"@eslint/js": "9.14.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/remove-markdown": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.1.0-rc-1460d67c-20241003",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.21.0",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.1.5",
"vitest-environment-miniflare": "^2.14.4",
"workbox-build": "7.3.0",
"workbox-window": "7.3.0",
"wrangler": "^3.87.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"license": "MIT"
}