-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "locallab",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "vite build",
"start": "NODE_ENV=production tsx server/index.ts",
"test": "vitest run",
"test:live-eval": "node scripts/live-eval.mjs",
"verify": "tsc --noEmit && vitest run",
"db:push": "drizzle-kit push",
"db:backup": "bash scripts/db-backup.sh",
"screenshot": "npm run build && node scripts/capture-screenshot.mjs"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"cors": "^2.8.6",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"multer": "^2.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.9.0",
"remark-gfm": "^4.0.1",
"unpdf": "^1.6.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"drizzle-kit": "^0.31.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^3.2.4"
}
}