-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.76 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
{
"name": "btst/root",
"private": true,
"type": "module",
"packageManager": "pnpm@10.17.1",
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
"dev": "turbo --filter \"./packages/*\" dev",
"dev:dts": "turbo --filter \"./packages/*\" dev:dts",
"clean": "turbo --filter \"./packages/*\" clean && rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --fix --unsafe",
"bump": "bumpp",
"test": "turbo --filter \"./packages/*\" test",
"e2e:smoke": "turbo --filter \"./e2e\" e2e:smoke",
"e2e:smoke:nextjs": "turbo --filter \"./e2e\" e2e:smoke:nextjs",
"e2e:smoke:tanstack": "turbo --filter \"./e2e\" e2e:smoke:tanstack",
"e2e:smoke:react-router": "turbo --filter \"./e2e\" e2e:smoke:react-router",
"e2e:integration": "turbo --filter \"./e2e/*\" e2e:integration",
"typecheck": "turbo --filter \"./packages/*\" typecheck",
"knip": "turbo --filter \"./packages/*\" knip"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/bun": "^1.3.1",
"@types/node": "^24.9.2",
"bumpp": "^10.3.1",
"rollup-preserve-directives": "1.1.3",
"tinyglobby": "^0.2.15",
"turbo": "^2.5.8",
"typescript": "catalog:",
"unbuild": "catalog:",
"vitest": "catalog:"
},
"resolutions": {
"zod": "^4.2.0",
"miniflare>zod": "^3.25.1",
"vinxi>zod": "^3.24.3",
"@tanstack/router-generator>zod": "^3.25.1",
"@tanstack/router-plugin>zod": "^3.25.1",
"@tanstack/start-plugin-core>zod": "^3.25.1",
"react": "^19.2.0",
"@tanstack/react-query": "^5.90.2",
"sonner": "^2.0.7"
},
"pnpm": {
"overrides": {
"react": "^19.2.0",
"@tanstack/react-query": "^5.90.2",
"sonner": "^2.0.7"
}
}
}