-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.1 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@effectify/repo",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"lint-staged": "lint-staged --allow-empty",
"clean": "rm -rf node_modules dist pnpm-lock.yaml && pnpm store prune & find . -type d \\( -name 'node_modules' -o -name 'dist' -o -name '.output' -o -name '.vinxi' -o -name '.cache' -o -name '.expo' -o -name '.nx' \\) -prune -exec rm -rf {} + & wait",
"prepare": "husky && ts-patch install -s",
"build:affected": "pnpm nx affected --target=build",
"test:affected": "pnpm nx affected --target=test",
"typecheck:affected": "pnpm nx affected --target=typecheck",
"lint": "pnpm exec oxlint && pnpm exec dprint check",
"lint:fix": "pnpm exec oxlint --fix && pnpm exec dprint fmt",
"lint:affected": "pnpm nx affected --target=lint",
"lint:many": "pnpm nx run-many --target=lint && pnpm exec dprint check",
"publish:affected": "pnpm nx publish-affected",
"release:affected": "pnpm nx release-affected",
"release:affected:dry-run": "pnpm nx release-affected-dry-run"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm exec oxlint --fix",
"pnpm exec dprint fmt --allow-no-files"
]
},
"devDependencies": {
"@effect/language-service": "catalog:",
"@nx/js": "catalog:",
"@nx/node": "catalog:",
"@nx/react": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "22.4.5",
"@nx/web": "catalog:",
"@react-router/dev": "catalog:",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/ui": "catalog:",
"dprint": "catalog:",
"husky": "catalog:",
"jiti": "catalog:",
"jsdom": "catalog:",
"lint-staged": "catalog:",
"nx": "22.4.5",
"nx-oxlint": "catalog:",
"oxlint": "1.42.0",
"prettier": "catalog:",
"ts-patch": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:",
"ultracite": "catalog:",
"verdaccio": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"pnpm": {
"packageExtensions": {
"starlight-sidebar-topics": {
"peerDependencies": {
"astro": "*"
}
},
"better-auth": {
"dependencies": {
"zod": "^4.3.6"
}
}
},
"overrides": {
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@prisma/client",
"@prisma/engines",
"@swc/core",
"@tailwindcss/oxide",
"better-sqlite3",
"core-js",
"dprint",
"esbuild",
"msgpackr-extract",
"nx",
"prisma",
"unrs-resolver"
],
"ignoredBuiltDependencies": [
"bun"
]
},
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@effect/experimental": "catalog:",
"@react-router/node": "catalog:",
"@react-router/serve": "catalog:",
"isbot": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-router": "catalog:"
}
}