-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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": "eclipse-timer",
"private": true,
"packageManager": "pnpm@9.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:mobile": "pnpm -C apps/mobile start",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"test:ci": "pnpm -r exec vitest run --config ../../vitest.config.ts --coverage --coverage.reporter=text-summary --coverage.reporter=lcovonly --coverage.reporter=json-summary --coverage.reportsDirectory=./artifacts/coverage --reporter=default --reporter=junit --outputFile.junit=./artifacts/test-results/junit.xml",
"coverage:gate": "node ./scripts/ci/coverage-gate.mjs",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@vitest/coverage-v8": "^2.1.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.4.0",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"pnpm": {
"patchedDependencies": {
"xcode@3.0.1": "patches/xcode@3.0.1.patch"
}
}
}