-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.51 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
{
"name": "@lunabrain/js",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:site\" \"npm run dev:extension\"",
"dev:stream": "cd js && BASE_URL=https://breadchris.ngrok.io TARGETS=stream node esbuild.mjs",
"dev:site": "cd js && BASE_URL=http://localhost:8000 TARGETS=site node esbuild.mjs",
"dev:extension": "cd js && BASE_URL=http://localhost:8000 TARGETS=extension node esbuild.mjs",
"build": "cd js && BASE_URL=https://demo.lunabrain.com BUILD=true node esbuild.mjs"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@gitgraph/react": "^1.6.0",
"@heroicons/react": "^2.1.1",
"@mozilla/readability": "^0.5.0",
"@react-spring/web": "^9.5.5",
"@splidejs/react-splide": "^0.7.12",
"@tailwindcss/typography": "^0.5.10",
"@tiptap/extension-blockquote": "^2.2.2",
"@tiptap/extension-bold": "^2.2.1",
"@tiptap/extension-code": "^2.2.2",
"@tiptap/extension-code-block": "^2.2.2",
"@tiptap/extension-code-block-lowlight": "^2.2.2",
"@tiptap/extension-dropcursor": "^2.2.2",
"@tiptap/extension-heading": "^2.2.2",
"@tiptap/extension-history": "^2.1.16",
"@tiptap/extension-image": "^2.2.2",
"@tiptap/extension-italic": "^2.2.1",
"@tiptap/extension-link": "^2.1.15",
"@tiptap/extension-strike": "^2.2.1",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"@tiptap/suggestion": "^2.2.1",
"@uidotdev/usehooks": "^2.4.0",
"@wixc3/react-board": "^2.3.0",
"concurrently": "^8.2.2",
"d3-hierarchy": "^3.1.2",
"daisyui": "^4.4.19",
"esbuild-plugin-swc": "^1.0.1",
"esbuild-style-plugin": "^1.6.1",
"eslint": "8.39.0",
"framer-motion": "^10.12.4",
"gpt-tokenizer": "^2.1.1",
"graphology": "^0.25.4",
"highlight.js": "^11.9.0",
"jotai": "^2.6.1",
"jotai-devtools": "^0.7.1",
"lowlight": "^3.1.0",
"prismjs": "^1.29.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-audio-player": "^0.17.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.4",
"react-h5-audio-player": "^3.8.6",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.4.0",
"react-hotkeys-hook": "^4.4.0",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.7",
"react-player": "^2.13.0",
"react-router-dom": "^6.11.0",
"react-youtube": "^10.1.0",
"rrweb": "^2.0.0-alpha.4",
"scheduler": "0.20.0",
"slate": "^0.94.1",
"slate-history": "^0.93.0",
"slate-react": "^0.98.4",
"tailwindcss": "^3.3.6",
"tippy.js": "^6.3.7",
"typescript": "^5.2.2",
"vis-timeline": "^7.7.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.28.1",
"@bufbuild/protobuf": "^1.6.0",
"@bufbuild/protoc-gen-es": "^1.6.0",
"@connectrpc/connect": "^1.3.0",
"@connectrpc/connect-web": "^1.3.0",
"@connectrpc/protoc-gen-connect-es": "^1.3.0",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@grpc/grpc-js": "^1.8.14",
"@types/chrome": "^0.0.246",
"@types/highlight.js": "^10.1.0",
"@types/node": "18.16.0",
"@types/prismjs": "^1.26.1",
"@types/qrcode.react": "^1.0.3",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"csstype": "^3.0.10",
"esbuild": "^0.19.4",
"esbuild-plugin-elm": "^0.0.12",
"protoc-gen-elm": "^3.4.4",
"source-map-support": "^0.5.21",
"ts-proto": "^1.146.0",
"typescript": "4.x.x",
"uuid": "^9.0.0"
}
}