-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "claude-code-usage-tracker",
"version": "1.0.0",
"description": "Track Claude Code usage by parsing JSONL session files",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "tsx watch src/server/index.ts",
"client": "vite",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist/server/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"express": "^5.2.1",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/vite-react": "^7.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}