-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.81 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
{
"name": "rstest-monorepo",
"private": true,
"scripts": {
"bench:cpu": "pnpm --filter @rstest/benchmarks bench:cpu",
"bench:memory": "pnpm --filter @rstest/benchmarks bench:memory",
"build": "pnpm --filter \"./packages/*\" run build",
"bump": "bumpp",
"check-dependency-version": "pnpx check-dependency-version-consistency --ignore-package @rstest/test-mock-re-exports . && echo",
"check-harness-docs": "node scripts/harness/check-harness-docs.mjs",
"check-spell": "pnpx cspell && heading-case",
"check-unused": "knip",
"check-version-consistency": "node scripts/checkVersionConsistency.mjs",
"e2e": "cd e2e && pnpm test && pnpm test:commonjs && pnpm test:no-isolate",
"format": "prettier --write . && heading-case --write",
"lint": "prettier --check . && pnpm run check-spell && pnpm run check-harness-docs && pnpm run lint:type",
"lint:type": "rslint --type-check",
"prepare": "lefthook install",
"test": "rstest",
"test:examples": "pnpm --filter \"@examples/*\" --filter \"!@examples/federation*\" test",
"test:federation": "pnpm -C examples/federation test",
"test:vscode": "pnpm --filter ./packages/vscode test",
"typecheck": "pnpm run lint:type"
},
"devDependencies": {
"@rslint/core": "^0.7.1",
"@rstest/core": "workspace:*",
"@types/node": "^22.16.5",
"bumpp": "^11.1.0",
"check-dependency-version-consistency": "^6.0.0",
"cross-env": "^10.1.0",
"cspell-ban-words": "^0.0.4",
"heading-case": "^1.1.3",
"knip": "^6.29.0",
"lefthook": "^2.1.10",
"pkg-pr-new": "^0.0.80",
"playwright": "^1.62.0",
"prettier": "^3.9.6",
"prettier-plugin-packagejson": "^3.0.2",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.17.0",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": ">=11.17.0"
}
}