forked from mathewdunne/CodeRunner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.45 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
69
70
71
72
73
74
75
76
77
78
{
"name": "frc-scriptum",
"private": true,
"version": "2.0.0",
"license": "MIT",
"description": "CodeRunner browser IDE and simulator for FRC programming training.",
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "bun run migrate && bun apps/control/src/main.ts",
"build": "bun run build:web && bun run build:ascope && bun run build:choreo && bun run docker:pull:workspace",
"clean": "bun scripts/clean.ts",
"dev:control": "bun --watch apps/control/src/main.ts",
"dev:web": "bun run --cwd apps/web dev",
"build:web": "bun run --cwd apps/web build",
"build:ascope": "bun scripts/build-ascope-lite.ts",
"build:choreo": "bun scripts/build-choreo.ts",
"build:elastic": "bun scripts/build-elastic.ts",
"verify:elastic": "bun scripts/verify-elastic.ts",
"apply:ascope-patches": "bun scripts/apply-vendor-patches.ts --tool=advantagescope",
"apply:elastic-patches": "bun scripts/apply-vendor-patches.ts --tool=elastic",
"check:vendor-manifest": "bun scripts/check-vendor-manifest.ts",
"fetch:dist": "bun scripts/fetch-dist.ts",
"setup:demo": "bun run docker:pull:workspace && bun run fetch:dist",
"demo": "bun run migrate && bun apps/control/src/main.ts --demo",
"docs:dev": "bun run --cwd website start",
"docs:build": "bun run --cwd website build",
"docs:install": "bun install --cwd website",
"demo:docker": "SCRIPTUM_DEMO_MODE=1 docker compose up",
"docker:build:workspace": "bun scripts/image.ts build workspace",
"docker:build:control": "bun scripts/image.ts build control",
"docker:pull:workspace": "bun scripts/image.ts pull workspace",
"docker:cleanup": "bun scripts/cleanup-containers.ts",
"docker:rebuild-workspaces": "bun scripts/rebuild-workspaces.ts",
"backup": "bun scripts/backup.ts",
"restore": "bun scripts/restore.ts",
"users:list": "bun scripts/users.ts list",
"migrate": "bun apps/control/src/migrate.ts apply",
"migrate:status": "bun apps/control/src/migrate.ts status",
"migrate:legion-identity": "bun scripts/migrate-legion-identity.ts",
"audit:prune": "bun scripts/audit-prune.ts",
"typecheck": "bun scripts/typecheck.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"verify": "biome ci . && bun run typecheck && bun run check:vendor-manifest && bun run test && bun run test:web && bun run e2e && bun run e2e:security",
"test": "bun test apps/control packages scripts apps/web/src/lib/keyboard-mapping.test.ts apps/web/src/lib/keyboard-mapping.property.test.ts",
"test:web": "bun run --cwd apps/web test",
"e2e": "E2E_TEST=1 bun --bun playwright test --project=mocked",
"e2e:ui": "E2E_TEST=1 bun --bun playwright test --project=mocked --ui",
"e2e:debug": "E2E_TEST=1 PWDEBUG=1 playwright test --project=mocked",
"e2e:security": "E2E_TEST=1 bun --bun playwright test --project=security",
"e2e:workspace-java": "E2E_TEST=1 PLAYWRIGHT_SKIP_WEB_BUILD=1 bun --bun playwright test --project=docker-smoke",
"e2e:report": "playwright show-report"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@playwright/test": "^1.60.0",
"@types/bun": "^1.3.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"fast-check": "^4.8.0",
"typescript": "^5.9.3",
"vite": "^7.2.6"
},
"dependencies": {
"fflate": "^0.8.3",
"react": "^19.2.1",
"react-dom": "^19.2.1"
}
}