-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
{
"name": "react-router-todo-starter",
"private": true,
"type": "module",
"scripts": {
"build": "bun run turbo build",
"start": "bun run turbo start",
"dev": "bun run turbo dev",
"dev:all": "bun run dev & bun run storybook",
"lint": "bun run turbo lint",
"format": "bun run turbo run format",
"storybook": "bun run turbo run storybook",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules .turbo apps/*/.turbo packages/*/.turbo .vercel apps/*/.vercel packages/*/.vercel apps/*/.react-router packages/*/.react-router",
"typecheck": "bun run turbo run typecheck",
"biome-fix": "bun run biome check --fix",
"test": "bun run turbo run test",
"test:ci": "bun run turbo run test:ci"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@lambdacurry/forms": "^0.19.7",
"@react-router/node": "^7.13.0",
"@react-router/serve": "^7.13.0",
"fs-extra": "^11.3.3",
"isbot": "^5.1.34",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0",
"remix-hook-form": "7.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@react-router/dev": "^7.13.0",
"@types/jsdom": "^21.1.7",
"bun-types": "^1.3.5",
"@types/node": "^20.19.30",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.7.0",
"turbo": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-tsconfig-paths": "^5.1.4",
"jsdom": "^26.1.0"
},
"engines": {
"node": ">=20.11.0"
},
"overrides": {
"esbuild": "0.24.2",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.5"
},
"resolutions": {
"react": "19.2.4",
"react-dom": "19.2.4",
"vite": "6.4.1",
"react-router-dom/react-router": "7.13.0",
"yallist": "^3.1.1",
"esbuild": "0.24.2",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.5"
},
"packageManager": "bun@1.2.19",
"workspaces": [
"apps/*",
"packages/*"
]
}