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
|
{
"name": "makima-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:prod": "VITE_API_ENV=production vite",
"build": "tsc -b && vite build",
"build:railway": "tsc -b && vite build --outDir build/client/",
"preview": "vite preview"
},
"dependencies": {
"@lexical/history": "^0.44.0",
"@lexical/list": "^0.44.0",
"@lexical/markdown": "^0.44.0",
"@lexical/react": "^0.44.0",
"@lexical/rich-text": "^0.44.0",
"@lexical/selection": "^0.44.0",
"@lexical/utils": "^0.44.0",
"@supabase/supabase-js": "^2.90.1",
"@xyflow/react": "^12.10.0",
"lexical": "^0.44.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.0",
"recharts": "^3.6.0"
},
"devDependencies": {
"@react-router/dev": "^7.1.0",
"@react-router/fs-routes": "^7.1.0",
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.5"
}
}
|