-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.82 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@orpc/monorepo",
"type": "module",
"version": "0.18.0",
"private": true,
"packageManager": "pnpm@9.12.1",
"scripts": {
"prepare": "simple-git-hooks",
"build": "pnpm run -r build",
"build:packages": "pnpm --filter=\"./packages/*\" run -r build",
"preview": "pnpm run --parallel preview",
"type:check": "pnpm run -r type:check",
"posttype:check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "pnpm run lint --fix",
"sherif": "pnpm dlx sherif",
"sherif:fix": "pnpm run sherif --fix",
"knip": "pnpm dlx knip --production",
"knip:fix": "pnpm run knip --fix --allow-remove-files",
"packages:bump": "pnpm dlx bumpp -r",
"packages:publish": "pnpm run build:packages && pnpm --filter='./packages/*' publish -r --access=public",
"packages:publish:commit": "pnpm run build:packages && pnpm dlx pkg-pr-new publish './packages/*' --pnpm --compact --template './playgrounds/*'",
"packages:changelog:github": "pnpm dlx changelogithub"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@eslint-react/eslint-plugin": "^1.16.2",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.0",
"typescript": "5.7.2",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --max-warnings=0 --fix"
}
}