-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.37 KB
/
package.json
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
{
"name": "site-tanstack",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev:tsr": "dotenvx run --convention=nextjs -- vinxi dev",
"dev:mdx": "dotenvx run --convention=nextjs -- tsx build-mdx.ts -w",
"dev": "concurrently -c yellow,blue --pad-prefix pnpm:dev:mdx pnpm:dev:tsr",
"build:tsr": "dotenvx run --convention=nextjs -- vinxi build",
"build:mdx": "dotenvx run --convention=nextjs -- tsx build-mdx.ts",
"build": "pnpm build:mdx && pnpm build:tsr",
"start": "dotenvx run --convention=nextjs -- node .output/server/index.mjs",
"lint": "biome ci ./app",
"lint:fix": "biome check --write ./app",
"typecheck": "dotenvx run --convention=nextjs -- tsc"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.34.0",
"@giscus/react": "^3.1.0",
"@sentry/react": "^8.54.0",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.99.0",
"@tanstack/router-devtools": "^1.99.0",
"@tanstack/start": "^1.99.3",
"@uidotdev/usehooks": "^2.4.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"jotai": "^2.11.3",
"p-memoize": "^7.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-innertext": "^1.1.5",
"sonner": "^1.7.4",
"tailwind-merge": "^3.0.1",
"vinxi": "^0.5.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@esbuild-plugins/node-resolve": "^0.2.2",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@mdx-js/esbuild": "^3.1.0",
"@shikijs/colorized-brackets": "^2.2.0",
"@shikijs/rehype": "^2.2.0",
"@shikijs/transformers": "^2.2.0",
"@shikijs/twoslash": "^2.2.0",
"@tailwindcss/postcss": "^4.0.3",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"babel-plugin-react-compiler": "19.0.0-beta-714736e-20250131",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"postcss": "^8.5.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"shiki": "^2.2.0",
"tailwindcss": "^4.0.3",
"tsx": "^4.19.2",
"twoslash": "^0.2.12",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-restart": "^0.4.2",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "[email protected]"
}