-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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": "@urban/personal-website-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": {
"catalog": {
"@effect/platform-node": "4.0.0-beta.40",
"effect": "4.0.0-beta.40",
"typescript": "^6.0.2"
},
"packages": [
"scratchpad",
"scripts",
"packages/*"
]
},
"scripts": {
"build": "turbo run build",
"changeset": "changeset add",
"check": "bun run lint && turbo run typecheck test",
"clean": "bun --filter=scripts run clean",
"dev": "turbo run dev",
"lint": "oxfmt && oxlint --fix",
"prepare": "husky && effect-language-service patch",
"release": "echo \"No release script\" && exit 0",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"version": "changeset version && bun install"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@effect/language-service": "^0.84.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"turbo": "2.8.20",
"typescript": "catalog:"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxfmt",
"oxlint --fix"
],
"*.{css,html,json,jsonc,md,mdx,yml,yaml}": [
"oxfmt"
]
},
"engines": {
"node": ">= 24.12.0"
},
"packageManager": "bun@1.3.5"
}