-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "arkham-build-monorepo",
"version": "3.9.0",
"private": true,
"type": "module",
"engines": {
"node": "24.x"
},
"workspaces": [
"backend",
"frontend",
"shared"
],
"scripts": {
"dev:functions": "wrangler pages dev",
"fmt": "biome check --write",
"lint": "biome check",
"prepare:e2e": "playwright install --with-deps",
"test:e2e": "playwright test --config test/e2e/playwright.config.ts",
"update-snapshots:local": "PW_TEST_HTML_REPORT_OPEN='never' playwright test --config test/e2e/playwright.config.ts --update-snapshots",
"update-snapshots:docker": "docker run -it --rm --ipc=host -v .:/work/ mcr.microsoft.com/playwright:v1.57.0 /bin/bash -c 'cd /work && npm i && PW_TEST_HTML_REPORT_OPEN=never npx playwright test --config test/e2e/playwright.config.ts --update-snapshots'"
},
"dependencies": {
"zod": "4.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@playwright/test": "1.57.0",
"@types/node": "24.10.15",
"@vitest/coverage-v8": "4.1.3",
"lefthook": "2.1.1",
"typescript": "5.9.3",
"vitest": "4.1.3",
"wrangler": "4.77.0"
}
}