-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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": "my-personal-site",
"version": "1.0.0",
"main": "index.js",
"author": "alex strand <[email protected]> (@_alex_strand)",
"license": "MIT",
"type": "module",
"private": true,
"workspaces": [],
"scripts": {
"dev": "node server.js",
"b": "vite build",
"site": "serve dist/static",
"preview": "vite preview",
"check": "bunx biome lint --write src",
"lint": "bunx oxlint@latest",
"test": "vitest",
"prerender": "node --experimental-specifier-resolution=node prerender",
"build": "trash dist && bun run build:clientAssets && bun run build:server && bun run prerender && node copyFiles.js",
"build:clientAssets": "vite --config vite.config.client.js build --outDir dist/static",
"build:server": "vite --config vite.config.server.js build --outDir dist/server --ssr src/entry-server.jsx"
},
"dependencies": {
"@mdx-js/mdx": "3.1.0",
"@mdx-js/preact": "3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@preact/preset-vite": "^2.9.4",
"@sindresorhus/slugify": "^2.2.1",
"@stylexjs/dev-runtime": "^0.10.0",
"@stylexjs/stylex": "^0.10.0",
"@urql/preact": "^4.1.1",
"consola": "^3.3.3",
"critical": "^7.2.1",
"csso": "^5.0.5",
"express": "^4.21.2",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"lucide-preact": "^0.468.0",
"preact": "^10.25.4",
"prop-types": "15.8.1",
"vite": "^6.0.7",
"vite-plugin-stylex": "^0.13.0"
},
"devDependencies": {
"@shikijs/rehype": "^1.26.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-parse": "^9.0.1",
"rehype-slug": "^6.0.0",
"fs-extra": "^11.2.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "^7.26.3",
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/preact": "^3.2.4",
"@testing-library/user-event": "^14.5.2",
"dayjs": "1.11.13",
"eslint": "^9.16.0",
"eslint-plugin-testing-library": "^6.4.0",
"jsdom": "^25.0.1",
"msw": "2.7.0",
"oxlint": "^0.15.5",
"path": "^0.12.7",
"preact-render-to-string": "6.5.12",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"rollup-plugin-esbuild": "^6.1.1",
"serve": "^14.2.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "2.1.8"
}
}