-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.23 KB
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
{
"name": "ai-draw-nexus",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"pnpm run dev:frontend\" \"pnpm run dev:server\"",
"dev:frontend": "vite",
"dev:server": "node server/index.js",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"docker:build": "docker build -t ai-draw-nexus .",
"docker:run": "docker-compose up -d"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@mermaid-js/layout-elk": "^0.2.0",
"@mermaid-js/layout-tidy-tree": "^0.2.0",
"@monaco-editor/react": "^4.7.0",
"@mozilla/readability": "^0.6.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dexie": "^4.2.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"fs-extra": "^11.3.3",
"jsonwebtoken": "^9.0.3",
"linkedom": "^0.18.12",
"lucide-react": "^0.562.0",
"mammoth": "^1.11.0",
"mermaid": "^11.12.2",
"monaco-editor": "^0.55.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-drawio": "^1.0.7",
"react-router-dom": "^7.11.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.4.0",
"turndown": "^7.2.2",
"uuid": "^13.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.1.18",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"wrangler": "^3.75.0"
}
}