-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.54 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
{
"name": "sandbox",
"version": "0.0.0",
"description": "an api for computers",
"scripts": {
"typecheck": "turbo run typecheck && npm run typecheck:e2e && npm run typecheck:perf",
"typecheck:e2e": "tsc --noEmit --project tests/e2e/tsconfig.json",
"typecheck:perf": "tsc --noEmit --project tests/perf/tsconfig.json",
"format": "prettier --write .",
"check": "sherif && biome check && turbo run typecheck && npm run typecheck:e2e && npm run typecheck:perf",
"fix": "biome check --fix && turbo run typecheck && npm run typecheck:e2e && npm run typecheck:perf",
"build": "turbo run build",
"build:clean": "turbo run build --force",
"test": "turbo run test",
"test:e2e": "npm run test:e2e:vitest && npm run test:e2e:browser",
"test:e2e:vitest": "turbo run test:e2e:vitest",
"test:e2e:browser": "turbo run test:e2e:browser",
"test:perf": "turbo run test:perf",
"test:perf:cold-start": "vitest run --config vitest.perf.config.ts tests/perf/scenarios/cold-start.test.ts",
"test:perf:concurrent": "vitest run --config vitest.perf.config.ts tests/perf/scenarios/concurrent-creation.test.ts",
"test:perf:sustained": "vitest run --config vitest.perf.config.ts tests/perf/scenarios/sustained-throughput.test.ts",
"test:perf:burst": "vitest run --config vitest.perf.config.ts tests/perf/scenarios/bursty-traffic.test.ts",
"docker:rebuild": "npm run build:clean && npm run docker:local -w @cloudflare/sandbox"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*",
"tooling/*",
"sites/*",
"examples/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@cloudflare/vitest-pool-workers": "^0.12.5",
"@cloudflare/workers-types": "^4.20251126.0",
"@playwright/test": "^1.50.0",
"@types/bun": "^1.3.6",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/ui": "^3.2.4",
"fast-glob": "^3.3.3",
"happy-dom": "^20.0.10",
"lefthook": "^2.0.4",
"pkg-pr-new": "^0.0.60",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sherif": "^1.9.0",
"tsdown": "^0.16.7",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^3.2.4",
"wrangler": "^4.70.0",
"ws": "^8.18.3"
},
"private": true,
"packageManager": "[email protected]"
}