-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "@rocicorp/mono",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22"
},
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"prod",
"tools/*"
],
"type": "module",
"scripts": {
"download-deps": "bash ./deps/download.sh",
"build": "npx turbo run build",
"dev": "npx turbo run dev",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint --quiet",
"format": "npx turbo run format",
"check-format": "npx turbo run check-format",
"check-types": "npx turbo run check-types",
"check-types:watch": "npx turbo watch check-types",
"build-ci": "npm install && npx turbo run build",
"start-zero-cache": "cd packages/zero-cache && npm run start",
"verify-deps": "cd tools/verify-package-deps && npm run verify",
"verify-deps:fix": "cd tools/verify-package-deps && npm run verify:fix",
"bench": "npx turbo run bench --concurrency=1",
"bench:bmf": "npx turbo run bench:bmf --concurrency=1",
"bench:bmf:silent": "npx turbo run bench:bmf:silent --concurrency=1"
},
"devDependencies": {
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "4.1.2",
"@vitest/runner": "4.1.2",
"baseline-browser-mapping": "^2.10.11",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.17.4",
"prettier": "^3.8.1",
"syncpack": "^14.2.1",
"tsx": "^4.21.0",
"turbo": "^2.4.4",
"vitest": "4.1.2"
},
"overrides": {
"esbuild": "^0.27.4"
}
}