-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "plugins-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"check:deps": "knip --dependencies",
"dev": "pnpm turbo dev --filter=test-studio",
"format": "oxfmt . --no-error-on-unmatched-pattern",
"generate": "turbo gen",
"knip": "knip",
"lint": "pnpm run oxlint",
"lint:fix": "pnpm lint --fix --fix-suggestions",
"oxlint": "oxlint --deny-warnings --disable-nested-config --report-unused-disable-directives",
"postgenerate": "pnpm install && pnpm format && pnpm build",
"postinstall": "husky",
"pregenerate": "turbo run build --filter='./turbo/generators'",
"pretest": "turbo run build --filter='!./dev/*'",
"release": "changeset publish",
"test": "vitest",
"turbo:fix": "pnpm dlx rimraf ./node_modules && pnpm install && pnpm turbo scan",
"typegen": "pnpm --filter=test-studio run typegen && pnpm format"
},
"dependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@typescript/native-preview": "catalog:",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0",
"setup-npm-trusted-publish": "^1.0.3",
"turbo": "2.8.16",
"typescript": "catalog:",
"vitest": "^4.1.0",
"vitest-package-exports": "^1.2.0"
},
"devDependencies": {
"knip": "^5.86.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,jsonc,md}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@10.32.1"
}