-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.9 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lighthouse",
"version": "0.46.0",
"private": true,
"description": "Self-hosted Gmail receipt and subscription tracker. Privacy-first, AI-powered, MIT licensed.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"setup": "tsx apps/cli/src/index.ts setup",
"sync": "tsx apps/cli/src/index.ts sync",
"serve": "tsx apps/cli/src/index.ts serve",
"status": "tsx apps/cli/src/index.ts status",
"alerts": "tsx apps/cli/src/index.ts alerts",
"digest": "tsx apps/cli/src/index.ts digest",
"export": "tsx apps/cli/src/index.ts export",
"import:gmail-takeout": "tsx apps/cli/src/index.ts import-takeout",
"seed:demo": "tsx packages/core/src/seed/demo.ts",
"dev": "tsx scripts/dev.ts",
"dev:web": "vite --config apps/web/vite.config.ts",
"dev:api": "tsx watch apps/cli/src/index.ts serve",
"build": "npm run build:web && npm run typecheck",
"build:web": "vite build --config apps/web/vite.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run typecheck && npm run lint && npm run test && npm run build:web",
"check:fast": "npm run typecheck && npm run lint",
"prepare": "simple-git-hooks || true"
},
"simple-git-hooks": {
"pre-commit": "npm run check:fast",
"pre-push": "npm run check"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@noble/hashes": "^1.5.0",
"@tanstack/react-query": "^5.59.0",
"better-sqlite3": "^11.5.0",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"googleapis": "^144.0.0",
"lucide-react": "^0.451.0",
"open": "^10.1.0",
"ora": "^8.1.0",
"p-limit": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"recharts": "^2.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vitest": "^2.1.2"
}
}