-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·103 lines (103 loc) · 3.44 KB
/
package.json
File metadata and controls
executable file
·103 lines (103 loc) · 3.44 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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "timetracker-mcp",
"version": "0.1.1",
"description": "A time-tracking app built with Next.js and the Model Context Protocol (MCP)",
"license": "MIT",
"author": "Lumile Argentina S.A. - https://lumile.com.ar",
"homepage": "https://timetracker-mcp.lumile.com.ar/",
"bugs": "https://github.com/lumile/timetracker-mcp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/lumile/timetracker-mcp.git"
},
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "node scripts/run-migrations.js && next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:api": "jest __tests__/api",
"test:components": "jest __tests__/components",
"test:mcp": "jest __tests__/mcp-tools",
"test:services": "jest __tests__/services",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx scripts/seed-data-simple.ts",
"test:db-connection": "tsx scripts/test-db-connection.ts",
"diagnose:db": "tsx scripts/diagnose-db.ts",
"build:production": "NODE_ENV=production node scripts/run-migrations.js && next build"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@t3-oss/env-nextjs": "^0.13.8",
"@types/better-sqlite3": "^7.6.13",
"@vercel/analytics": "^1.5.0",
"@vercel/mcp-adapter": "^0.4.1",
"better-auth": "^1.3.2",
"better-sqlite3": "^11.10.0",
"chart.js": "^4.4.2",
"chartjs-adapter-date-fns": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.44.2",
"loops": "^5.0.1",
"lucide-react": "^0.514.0",
"nanoid": "^5.1.5",
"next": "15.3.2",
"next-themes": "^0.4.6",
"pg": "^8.16.0",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-day-picker": "^9.8.0",
"react-dom": "^19.1.0",
"recharts": "^2.15.4",
"sonner": "^2.0.5",
"swr": "^2.3.4",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.64"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.2",
"@tailwindcss/postcss": "^4.1.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.1",
"@types/pg": "^8.15.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"dotenv": "^16.5.0",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.3",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"msw": "^2.10.4",
"node-mocks-http": "^1.17.2",
"tailwindcss": "^4.1.10",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
}
}