-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) 路 1.12 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) 路 1.12 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
{
"name": "paleui-monorepo",
"type": "module",
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "concurrently -n SITE,LIB,DOCS \"pnpm run --filter site dev\" \"pnpm run --filter paleui dev\" \"tsx scripts/generate-docs.ts --watch\"",
"build": "pnpm run --filter paleui build && tsx scripts/generate-docs.ts && pnpm run --filter site build",
"check": "biome check",
"fix": "biome check --fix && prettier --write --log-level warn \"**/*.astro\"",
"test:update": "playwright test --update-snapshots",
"test:run": "playwright test",
"test:run:ui": "playwright test --ui --ui-port=9323",
"test:run:docker-up": "docker compose -f docker-compose.playwright.yml up -d --wait && PW_TEST_CONNECT_WS_ENDPOINT=ws://localhost:3000/ PW_BROWSER_BASE_URL=http://host.docker.internal playwright test",
"test:run:docker-down": "docker compose -f docker-compose.playwright.yml down"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@playwright/test": "1.57.0",
"@types/node": "^25.0.10",
"concurrently": "^9.1.2",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}