-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
38
39
{
"name": "@repo/mono",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.21.0",
"scripts": {
"prepare": "simple-git-hooks",
"dev": "pnpm run --parallel dev",
"build": "pnpm run -r build",
"preview": "pnpm run --parallel preview",
"type:check": "pnpm run -r type:check && tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch --passWithNoTests",
"test:coverage": "pnpm run test --coverage",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "pnpm run lint --fix",
"sherif": "pnpm dlx sherif",
"sherif:fix": "pnpm run sherif --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/node": "^24.10.0",
"@vitest/coverage-v8": "^4.0.8",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"lint-staged": "^16.2.6",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --max-warnings=0 --fix"
}
}