-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.1 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
{
"name": "commit-history",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "node --env-file-if-exists=.env ./node_modules/vite/bin/vite.js dev --port 3000",
"generate-routes": "tsr generate",
"og": "tsx scripts/generate-og.ts",
"build": "tsx scripts/generate-og.ts && vite build && pnpm run build:worker",
"build:worker": "esbuild scripts/monthly-user-refresh.ts scripts/refresh-orgs.ts --bundle --platform=node --target=node24 --format=esm --outdir=.output/worker --out-extension:.js=.mjs",
"start": "node .output/server/index.mjs",
"preview": "vite preview",
"test": "vitest run",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"check:posts": "bun scripts/check-post-people.ts",
"suspend": "bun scripts/suspend.ts",
"refresh": "bun scripts/refresh.ts",
"refresh-user": "bun scripts/refresh-user.ts",
"monthly:user": "node --env-file-if-exists=.env --import tsx scripts/monthly-user-refresh.ts",
"backfill": "bun scripts/backfill-contributions.ts",
"refresh:orgs": "node --env-file-if-exists=.env --import tsx scripts/refresh-orgs.ts",
"backup": "bash scripts/backup.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:refresh-dev": "bash scripts/refresh-dev-db.sh",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-devtools": "latest",
"@tanstack/react-query": "latest",
"@tanstack/react-query-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.168.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^0.577.0",
"motion": "^12.42.2",
"postgres": "^3.4.9",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"satori": "^0.26.0",
"stripe": "^22.3.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@tanstack/router-cli": "^1.167.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/mdx": "^2.0.14",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.10",
"esbuild": "^0.28.1",
"jsdom": "^28.1.0",
"nitro": "3.0.260610-beta",
"tsx": "^4.22.4",
"typescript": "^6.0.2",
"vite": "^8.1.3",
"vitest": "^4.1.10",
"yaml": "^2.9.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}