-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathpackage.json
42 lines (42 loc) · 1.68 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
{
"private": true,
"engines": {
"node": "^20.9.0 || >=22",
"pnpm": ">=10.6.2"
},
"scripts": {
"build": "nx run-many --target=build --exclude='@react-docgen-internal/*'",
"lint": "eslint . --flag unstable_config_lookup_from_file --report-unused-disable-directives --max-warnings=0",
"fix": "eslint . --flag unstable_config_lookup_from_file --fix --report-unused-disable-directives --max-warnings=0",
"test": "nx run-many --target=test --exclude='@react-docgen-internal/*' --output-style=stream",
"copy:changelog:react-docgen": "cp ./packages/react-docgen/CHANGELOG.md ./packages/website/src/pages/docs/release-notes/react-docgen.mdx",
"copy:changelog:cli": "cp ./packages/react-docgen-cli/CHANGELOG.md ./packages/website/src/pages/docs/release-notes/cli.mdx",
"changesets-release": "pnpm build && changeset publish",
"changesets-version": "changeset version && pnpm install --lockfile-only && pnpm copy:changelog:react-docgen && pnpm copy:changelog:cli"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.2",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.25.1",
"@types/node": "20.17.30",
"@vitest/coverage-v8": "3.1.2",
"cpy": "11.1.0",
"eslint": "9.25.1",
"eslint-config-next": "15.3.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "5.2.6",
"execa": "9.5.2",
"globals": "16.0.0",
"nx": "20.8.0",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"rimraf": "6.0.1",
"tempy": "3.1.0",
"typescript": "5.8.3",
"typescript-eslint": "8.31.0",
"vitest": "3.1.2"
},
"packageManager": "[email protected]"
}