-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.49 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
{
"name": "matthewbalaam.co.uk",
"version": "0.4.0",
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"ci:build": "pnpm build && node --experimental-strip-types ./scripts/to-pdf.ts",
"ci:test": "concurrently 'pnpm lint' 'pnpm typecheck'",
"lint": "pnpm oxlint --type-aware",
"lint:fix": "pnpm oxlint --type-aware --fix",
"start": "react-router-serve ./build/server/server.js",
"postinstall": "playwright install",
"test": "pnpm build && playwright test",
"test:open": "pnpm build && playwright test --ui",
"typecheck": "react-router typegen && tsgo --noEmit",
"typegen": "react-router typegen"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR"
]
},
"dependencies": {
"@mdx-js/rollup": "3.1.1",
"@react-router/node": "7.9.6",
"@react-router/serve": "7.9.6",
"@rolldown/pluginutils": "1.0.0-beta.51",
"@vanilla-extract/css": "1.17.4",
"@vanilla-extract/vite-plugin": "5.1.1",
"image-size": "^2.0.2",
"isbot": "5.1.32",
"linkify-react": "4.3.2",
"linkifyjs": "4.3.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router": "7.9.6"
},
"devDependencies": {
"@axe-core/playwright": "4.10.2",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@netlify/vite-plugin-react-router": "2.1.2",
"@playwright/test": "^1.56.1",
"@prettier/plugin-oxc": "0.0.5",
"@react-router/dev": "7.9.6",
"@types/mdx": "2.0.13",
"@types/node": "^22.19.1",
"@types/react": "19.2.5",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20251117.1",
"axe-core": "4.9.1",
"concurrently": "9.2.1",
"lint-staged": "16.2.6",
"oxfmt": "0.14.0",
"oxlint": "1.28.0",
"oxlint-tsgolint": "^0.7.3",
"playwright": "1.56.1",
"postcss-custom-media-generator": "1.1.0",
"postcss-preset-env": "10.4.0",
"prettier": "3.6.2",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-devtools-json": "1.0.0",
"vite-tsconfig-paths": "5.1.4",
"zod": "4.1.12"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b"
}