-
-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 865 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 865 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
{
"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",
"typecheck": "turbo run typecheck",
"format:check": "turbo run format:check",
"format": "turbo run format",
"test": "vitest --no-isolate",
"test:coverage": "vitest run --coverage --no-isolate"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@webcrack/eslint-config": "workspace:*",
"eslint": "^10.2.1",
"prettier": "^3.8.3",
"turbo": "^2.9.16",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"patchedDependencies": {
"vite-plugin-monaco-editor@1.1.0": "patches/vite-plugin-monaco-editor@1.1.0.patch"
}
}
}