-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
package.json
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
{
"name": "starter-kitty",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"build:report": "turbo build:report",
"build:docs": "turbo build:docs",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"ci:report": "turbo ci:report",
"format": "turbo format",
"format:check": "turbo format:check"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.0.6",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8",
"vite@>=5.3.0 <5.3.6": ">=5.3.6",
"vite@>=5.3.0 <=5.3.5": ">=5.3.6",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"nanoid@<3.3.8": ">=3.3.8"
}
}
}