-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 KB
/
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
{
"name": "webcrack",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "vitest --no-isolate",
"test:coverage": "vitest run --coverage --no-isolate",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@vitest/coverage-istanbul": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"@webcrack/eslint-config": "workspace:*",
"eslint": "^9.21.0",
"prettier": "^3.5.2",
"turbo": "^2.4.4",
"vitest": "^3.0.7"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"elliptic@<6.6.1": ">=6.6.1",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"micromatch@<4.0.8": ">=4.0.8",
"vite@>=5.2.0 <5.4.12": ">=5.4.12",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4"
}
}
}