-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.51 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
{
"name": "opencode-stats-panel",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k -n api,web -c blue,magenta \"npm:dev:server\" \"npm:dev:client\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"start": "tsx server/index.ts",
"build": "tsc -b && vite build",
"typecheck": "tsc -b && tsc --noEmit -p tsconfig.server.json",
"lint": "oxlint",
"preview": "vite preview"
},
"dependencies": {
"@fontsource-variable/geist": "^5.3.0",
"@tailwindcss/vite": "^4.3.3",
"better-sqlite3": "^13.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.13",
"express": "^5.2.1",
"lucide-react": "^1.31.0",
"marked": "^18.0.9",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"recharts": "^3.8.0",
"shadcn": "^4.18.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@types/better-sqlite3": "^9.6.0",
"@types/dompurify": "^3.0.5",
"@types/express": "^5.0.6",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"concurrently": "^10.0.5",
"oxlint": "^1.75.0",
"typescript": "~6.0.2",
"vite": "^8.2.0"
},
"allowScripts": {
"better-sqlite3@13.0.3": true,
"esbuild@0.28.2": true,
"fsevents@2.3.3": true,
"shadcn@4.18.0": true
}
}