-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 4.77 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 4.77 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
{
"name": "@psd-eoc/root",
"version": "0.0.0",
"description": "Open-source emergency notification and operations platform for school districts: incident and drill activation, staff notification, live event collaboration, and append-only records.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/psd401/psd-eoc.git"
},
"private": true,
"packageManager": "bun@1.2.23",
"workspaces": [
"packages/*",
"workers",
"infra",
"infra/gcp",
"infra/lambda/*",
"scripts",
"scripts/ops",
"scripts/ops/*"
],
"scripts": {
"format": "prettier --write --ignore-path .prettierignore package.json tsconfig.base.json eslint.config.mjs .prettierrc compose.test.yml .github packages workers infra scripts docs README.md SECURITY.md AGENTS.md CLAUDE.md",
"format:check": "prettier --check --ignore-path .prettierignore package.json tsconfig.base.json eslint.config.mjs .prettierrc compose.test.yml .github packages workers infra scripts docs README.md SECURITY.md AGENTS.md CLAUDE.md",
"lint": "eslint . --max-warnings 0",
"verify:workspaces": "bun scripts/verify-workspaces.ts",
"verify:config": "bun scripts/verify-example-config.ts",
"verify:docs": "bun scripts/verify-documentation.ts",
"typecheck": "bun run verify:workspaces && bun run --filter '*' typecheck",
"build": "bun run --cwd packages/server build",
"test": "bun run test:full",
"test:full": "bun scripts/test.ts && bun run test:mobile",
"test:unit": "bun scripts/test.ts --unit-only && bun run test:mobile",
"test:mobile": "bun run --cwd packages/mobile native-config:check && bun scripts/test-mobile-native.ts",
"test:db:start": "bun scripts/test-database.ts start",
"test:db:migrate": "bun scripts/test-database.ts migrate",
"test:db:seed": "bun scripts/test-database.ts seed",
"test:db:stop": "bun scripts/test-database.ts stop",
"test:web": "bun scripts/test-database.ts web",
"test:e2e:issue-340": "bun packages/server/e2e/run.ts",
"test:e2e:issue-340:update-evidence": "PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:issue-341": "bun test packages/mobile/src/features/event-room/native-photo.test.ts packages/mobile/src/features/event-room/photo-draft.test.ts packages/mobile/src/features/event-room/api.test.ts packages/mobile/src/features/event-room/model.test.ts packages/mobile/src/features/event-room/sync-controller.test.ts && bun run --cwd packages/mobile test:native -- --testPathPattern event-room-screen.native.tsx && bun packages/server/e2e/run.ts",
"test:e2e:issue-341:update-evidence": "bun test packages/mobile/src/features/event-room/native-photo.test.ts packages/mobile/src/features/event-room/photo-draft.test.ts packages/mobile/src/features/event-room/api.test.ts packages/mobile/src/features/event-room/model.test.ts packages/mobile/src/features/event-room/sync-controller.test.ts && bun run --cwd packages/mobile test:native -- --testPathPattern event-room-screen.native.tsx && PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:issue-344": "bun packages/server/e2e/run.ts",
"test:e2e:issue-344:update-evidence": "PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:issue-32": "bun packages/server/e2e/run.ts",
"test:e2e:issue-32:update-evidence": "PSD_EOC_E2E_SERVER_MODE=production PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:issue-278": "bun scripts/verify-issue-278.ts",
"test:e2e:issue-43": "bun scripts/verify-issue-43.ts",
"test:e2e:issue-277": "bun packages/server/e2e/run.ts",
"test:e2e:issue-277:update-evidence": "PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:issue-279": "bun scripts/verify-issue-279.ts && bun packages/server/e2e/run.ts",
"test:e2e:issue-279:update-evidence": "bun scripts/verify-issue-279.ts && PSD_EOC_E2E_UPDATE_EVIDENCE=true bun packages/server/e2e/run.ts",
"test:e2e:mobile": "bun run test:e2e:mobile:ios && bun run test:e2e:mobile:android",
"test:e2e:mobile:ios": "bun packages/mobile/e2e/run.ts ios",
"test:e2e:mobile:android": "bun packages/mobile/e2e/run.ts android",
"test:e2e:mobile:verify": "bun run --cwd packages/mobile e2e:verify",
"check": "bun run format:check && bun run lint && bun run verify:config && bun run verify:docs && bun run typecheck && bun run build && bun run test:full"
},
"devDependencies": {
"@eslint/js": "9.35.0",
"@next/eslint-plugin-next": "15.5.21",
"@playwright/test": "1.55.0",
"@types/bun": "1.2.23",
"axe-core": "4.12.1",
"eslint": "9.35.0",
"globals": "16.4.0",
"prettier": "3.6.2",
"typescript": "5.9.2",
"typescript-eslint": "8.42.0"
},
"patchedDependencies": {
"postgres@3.4.8": "patches/postgres@3.4.8.patch"
}
}