-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "opencode-cost-observatory",
"private": true,
"description": "Local-first dashboard for OpenCode token, model, and pricing analytics.",
"license": "GPL-3.0-only",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite --config vite.config.ts",
"server": "tsx server/main.ts",
"start": "tsx server/main.ts",
"build": "vite build --config vite.config.ts",
"check": "tsc --noEmit",
"test": "node --import tsx --test \"server/**/*.test.ts\" \"client/**/*.test.ts\"",
"db:generate": "drizzle-kit generate --config drizzle.config.ts"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"drizzle-orm": "^0.41.0",
"express": "^4.21.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"drizzle-kit": "^0.30.4",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.1"
}
}