-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
43 lines (43 loc) · 1.65 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
{
"private": true,
"name": "@fast-check/monorepo",
"description": "Test making sure fast-check expose the right typings",
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
".github/actions/*",
"examples",
"packages/*",
"website"
],
"scripts": {
"contributor:add": "all-contributors add",
"build:all": "yarn workspaces foreach --all -pvi --topological-dev --exclude website run build",
"build-ci:all": "yarn workspaces foreach --all -pvi --topological-dev --exclude website run build-ci",
"test:all": "yarn workspaces foreach --all -pvi run test && yarn workspaces foreach --all -pvi run e2e",
"typecheck:all": "yarn workspaces foreach --all -pvi run typecheck",
"format": "prettier --cache --write .",
"format:check": "prettier --list-different .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"publint:all": "yarn workspaces foreach --all -pvi --no-private exec publint --strict",
"bump": "changeset",
"pack:all": "yarn workspaces foreach --all -pvi --no-private pack --out package.tgz",
"unpack:all": "yarn workspaces foreach --all -pvi --no-private exec tar -xf package.tgz --strip-components=1 --exclude='package/package.json'"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.14.0",
"@fast-check/packaged": "*",
"@typescript-eslint/utils": "^8.14.0",
"all-contributors-cli": "^6.26.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"pkg-pr-new": "^0.0.30",
"prettier": "3.3.3",
"publint": "^0.2.12",
"typescript": "~5.6.3",
"typescript-eslint": "^8.14.0"
}
}