-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.23 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
{
"name": "trackr",
"version": "1.0.0",
"description": "Track and analyze AI coding tool usage across your team",
"license": "Apache-2.0",
"author": "smartdev",
"repository": {
"type": "git",
"url": "https://github.com/smartdev/trackr.git"
},
"private": true,
"packageManager": "pnpm@10.27.0",
"scripts": {
"dev": "next dev",
"build": "tsx scripts/cli/index.ts db:migrate && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"backfill": "tsx scripts/backfill.ts",
"cli": "tsx scripts/cli/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@sentry/nextjs": "^10.32.1",
"@vercel/analytics": "^1.6.1",
"@vercel/postgres": "^0.10.0",
"better-auth": "^1.4.10",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.24.7",
"geist": "^1.5.1",
"lucide-react": "^0.562.0",
"next": "16.1.5",
"papaparse": "^5.5.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": "bash -c 'pnpm tsc --noEmit --skipLibCheck'"
},
"pnpm": {
"onlyBuiltDependencies": [
"@sentry/cli",
"esbuild",
"sharp",
"simple-git-hooks"
]
},
"devDependencies": {
"@electric-sql/pglite": "^0.3.14",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.7",
"postgres": "^3.4.8",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.0.16"
}
}