-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 5.65 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 5.65 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "sreetamdas.com",
"version": "6.0.0",
"license": "MIT",
"type": "module",
"browser": {
"fs": false
},
"scripts": {
"build:content-collections": "content-collections build",
"generate-feeds": "tsx scripts/generate-feeds.ts",
"dev": "vp dev",
"prebuild": "vp run build:content-collections && vp run generate-feeds && node scripts/generate-build-info.mjs",
"build": "CC_SKIP_VITE_BUILD=1 vp build && node scripts/inject-early-hints.mjs",
"build:ci": "vp build && node scripts/inject-early-hints.mjs",
"preview": "vp preview",
"snapshot:newsletter": "tsx scripts/snapshot-newsletter.ts",
"test:unit": "pnpm exec vp test run --config .config/vitest.unit.config.ts",
"test:workers": "pnpm exec vp test run --config .config/vitest.config.ts --max-workers=1 --no-isolate",
"test:workers:watch": "pnpm exec vp test --config .config/vitest.config.ts --max-workers=1 --no-isolate",
"test:workers:serial": "pnpm exec vp test run --config .config/vitest.config.ts --max-workers=1 --no-isolate",
"test:workers:debug": "pnpm exec vp test --config .config/vitest.config.ts --inspect --no-file-parallelism --max-workers=1 --no-isolate",
"test:e2e": "playwright test --config .config/playwright.config.ts",
"test:e2e:headed": "playwright test --config .config/playwright.config.ts --headed",
"test:e2e:ui": "playwright test --config .config/playwright.config.ts --ui",
"compile": "tsc --watch",
"pretypecheck": "vp run build:content-collections",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:ci": "tsc -p tsconfig.json --noEmit",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./src/cloudflare-env.d.ts",
"db:generate": "drizzle-kit generate --config .config/drizzle.config.ts",
"db:bootstrap:local": "wrangler d1 execute sreetamdas_com --local --command \"SELECT 1\"",
"db:migrate:local": "vp run db:bootstrap:local && drizzle-kit migrate --config .config/drizzle.studio.local.config.ts",
"db:migrate:remote": "drizzle-kit migrate --config .config/drizzle.studio.remote.config.ts",
"db:migrate:deploy": "node scripts/migrate-d1.mjs",
"db:likes:recount": "node scripts/likes-recount.mjs",
"db:studio": "drizzle-kit studio --config .config/drizzle.studio.local.config.ts",
"db:studio:local": "vp db:bootstrap:local && drizzle-kit studio --config .config/drizzle.studio.local.config.ts",
"db:studio:remote": "drizzle-kit studio --config .config/drizzle.studio.remote.config.ts",
"oxlint:check": "vp lint ./src",
"oxlint:type:check": "vp lint --type-aware --type-check ./src",
"oxlint:fix": "vp lint --fix ./src",
"oxlint:type:fix": "vp lint --type-aware --type-check --fix ./src",
"oxfmt:check": "vp fmt --check ./src '!**/routeTree.gen.ts'",
"oxfmt:write": "vp fmt --write ./src '!**/routeTree.gen.ts'",
"lint": "vp run oxfmt:check && vp run oxlint:check",
"lint:type": "vp run oxfmt:check && vp run oxlint:type:check",
"lint:fix": "vp run oxfmt:write && vp run oxlint:fix",
"lint:type:fix": "vp run oxfmt:write && vp run oxlint:type:fix",
"format": "vp run oxfmt:write",
"deploy": "pnpm db:migrate:deploy && CLOUDFLARE_ENV=production pnpm build && CLOUDFLARE_ENV=production wrangler deploy -e production",
"deploy:production": "pnpm db:migrate:deploy && CLOUDFLARE_ENV=production pnpm build && CLOUDFLARE_ENV=production wrangler deploy -e production",
"deploy:staging": "pnpm db:migrate:deploy && CLOUDFLARE_ENV=staging pnpm build && CLOUDFLARE_ENV=staging wrangler deploy -e staging",
"deploy:preview": "node scripts/deploy-preview.mjs",
"prepare": "vp config",
"lint-staged": "vp staged"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@better-auth/drizzle-adapter": "^1.6.25",
"@fontsource-variable/bricolage-grotesque": "^5.3.0",
"@fontsource-variable/inter": "^5.3.0",
"@notionhq/client": "^5.23.3",
"@sentry/cloudflare": "^10.69.0",
"@sentry/tanstackstart-react": "^10.69.0",
"@shikijs/colorized-brackets": "^4.4.1",
"@shikijs/langs-precompiled": "^4.4.1",
"@shikijs/magic-move": "^4.4.1",
"@sreetamdas/karma": "^3.1.1",
"@tanstack/hotkeys": "^0.8.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-start": "^1.168.35",
"@tanstack/start-static-server-functions": "^1.167.19",
"better-auth": "^1.6.25",
"clsx": "^2.1.1",
"drizzle-orm": "1.0.0-rc.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-icons": "^5.7.0",
"react-tweet": "^3.3.1",
"safe-mdx": "^1.11.5",
"shiki": "^4.4.1",
"tailwind-merge": "^3.6.0",
"unist-util-visit": "^5.1.0",
"workers-og": "0.0.27",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.50.0",
"@cloudflare/vitest-pool-workers": "^0.20.1",
"@content-collections/cli": "^0.1.9",
"@content-collections/core": "^0.15.2",
"@content-collections/vite": "^0.3.0",
"@octokit/types": "^17.0.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-devtools": "^0.10.9",
"@tanstack/react-query-devtools": "^5.101.4",
"@tanstack/react-router-devtools": "1.167.0",
"@types/better-sqlite3": "^9.6.0",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/unist": "~3.0.3",
"@vitejs/plugin-react": "^6.0.5",
"@vitejs/plugin-rsc": "^0.5.32",
"better-sqlite3": "^13.0.2",
"drizzle-kit": "1.0.0-rc.3",
"eslint-plugin-better-tailwindcss": "^4.7.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.5",
"typescript": "^7.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vite-plus": "catalog:",
"vitest": "4.1.10",
"wrangler": "^4.118.0"
},
"engines": {
"node": "24"
},
"packageManager": "pnpm@11.17.0",
"msw": {
"workerDirectory": "public"
}
}