-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.42 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rsdoctor-monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "cross-env NX_DAEMON=false nx run-many -t build --projects=@rsdoctor/*,@examples/rsdoctor-rspack-banner,@examples/doctor-rsbuild-minimal --parallel=10",
"change": "changeset",
"changeset": "changeset",
"bump": "changeset version",
"check-spell": "pnpx cspell && heading-case",
"check-changeset": "pnpx disallow-major-changeset",
"check-dependency-version": "pnpx check-dependency-version-consistency . && echo",
"dev:doc": "cd packages/document && pnpm run dev",
"e2e": "pnpm run e2e:base && pnpm run e2e:native",
"e2e:base": "cd ./e2e && pnpm test",
"e2e:native": "cd ./e2e && cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm test:native",
"format": "prettier --write . && heading-case --write",
"lint": "biome lint . --diagnostic-level=error",
"prepare": "pnpm run build && husky",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm run ut",
"test:all": "pnpm run test && pnpm run e2e",
"sort-package-json": "npx sort-package-json \"packages/*/package.json\"",
"ut": "rstest run",
"ut:watch": "rstest"
},
"nano-staged": {
"*.{md,mdx,json,css,less,scss}": "prettier --write",
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"prettier --write",
"biome lint --diagnostic-level=error --no-errors-on-unmatched"
],
"package.json": "pnpm run check-dependency-version"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@changesets/cli": "^2.29.8",
"@rsdoctor/tsconfig": "workspace:*",
"@rslib/core": "^0.18.5",
"@rstest/core": "0.8.5",
"@scripts/test-helper": "workspace:*",
"cross-env": "^7.0.3",
"cspell-ban-words": "^0.0.4",
"heading-case": "^0.1.6",
"husky": "^9.1.7",
"nano-staged": "^0.9.0",
"nx": "^20.8.4",
"prettier": "^3.8.1",
"rsbuild-plugin-publint": "^0.3.4"
},
"pnpm": {
"overrides": {
"@remix-run/router": "1.23.2",
"call-bind-apply-helpers": "1.0.2",
"es-object-atoms": "1.1.1",
"get-intrinsic": "1.3.0",
"node-forge": "1.3.3",
"qs": "6.14.2",
"rc-dialog": "9.1.0",
"rc-tree": "5.7.2",
"react-dom": "18.3.1",
"sirv": "3.0.2",
"tar": "7.5.9",
"tslib": "2.8.1"
}
},
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=16.20.2",
"pnpm": ">=10.17.1"
}
}