-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "knowledge-graph-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "tsx server/index.ts",
"start:all": "concurrently \"npm run dev\" \"npm run server\"",
"build": "tsc -b && vite build",
"test": "vitest run",
"lint": "oxlint",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"better-sqlite3": "^13.0.2",
"concurrently": "^10.0.4",
"cors": "^2.8.6",
"express": "^5.2.1",
"html-to-image": "^1.11.13",
"lucide-react": "^1.28.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.5",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.10",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"oxlint": "^1.75.0",
"typescript": "~6.0.2",
"vite": "^8.2.0"
}
}