-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 784 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
{
"name": "chimborazo-park-monorepo",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"check": "turbo run check",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"turbo": "^2.9.5",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@posthog/cli",
"@swc/core"
],
"overrides": {
"@sanity/types": "^5.12.0",
"@sanity/client": "^7.16.0"
}
}
}