-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
{
"name": "@hiogawa/vite-plugins-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r '--filter=!*example*' build",
"changelog": "pnpm dlx @hiogawa/changelog --repo https://github.com/hi-ogawa/vite-plugins",
"tsc": "tsc -b packages/*/tsconfig.json packages/*/examples/*/tsconfig.json",
"tsc-dev": "pnpm tsc --watch --preserveWatchOutput",
"test": "pnpm -r --sequential test run",
"lint": "biome check --write .",
"lint-check": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "1.9.5-nightly.81fdedb",
"@hiogawa/utils": "^1.7.0",
"@playwright/test": "^1.50.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.13.5",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"esbuild": "^0.24.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-server-dom-webpack": "^19.0.0",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.6",
"wrangler": "^3.109.2"
},
"packageManager": "[email protected]+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"volta": {
"node": "22.14.0"
},
"pnpm": {
"overrides": {
"vite": "$vite",
"react": "$react",
"react-dom": "$react-dom",
"react-server-dom-webpack": "$react-server-dom-webpack",
"@hiogawa/react-server": "workspace:*",
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"@vitejs/plugin-react": "$@vitejs/plugin-react"
},
"patchedDependencies": {
"@remix-run/dev": "patches/@remix-run__dev.patch"
}
}
}