-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.8 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
{
"name": "root",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"private": true,
"packageManager": "npm@10.9.2",
"scripts": {
"build": "turbo run build",
"test": "FORCE_COLOR=0 turbo test",
"test:browser": "playwright install chromium && turbo run test:browser",
"check-shared": "node scripts/check-shared-files.js",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -p test/types/tsconfig.json",
"coverage": "turbo coverage",
"report-coverage": "turbo report-coverage",
"release": "multi-semantic-release --ignore-private-packages",
"release:dry-run": "multi-semantic-release --ignore-private-packages --dry-run",
"release:inspect-packages": "node scripts/release/inspect-packages.js",
"release:packages": "node scripts/release/packages.js list",
"release:smoke-tarballs": "node scripts/release/smoke-tarballs.js",
"release:touch-packages": "node scripts/release/touch-packages.js"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.60.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"conventional-changelog-conventionalcommits": "9.3.1",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"minimatch": "10.2.5",
"multi-semantic-release": "3.1.0",
"playwright": "1.60.0",
"serialize-javascript": "7.0.5",
"tar": "7.5.15",
"turbo": "2.9.18",
"typescript": "6.0.3"
},
"overrides": {
"serialize-javascript": "7.0.5",
"minimatch": "10.2.5",
"tar": "7.5.15",
"diff": "8.0.3",
"npm": "11.17.0"
}
}