forked from jihe520/mindpocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 890 Bytes
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
{
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "ultracite check",
"fix": "ultracite fix",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"turbo": "^2.8.2",
"ultracite": "7.1.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,css}": "biome check --write"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"lightningcss": "1.30.1"
}
},
"name": "mindpocket-monorepo",
"packageManager": "pnpm@10.9.0"
}