-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 2.58 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
{
"name": "gridland-monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --cwd packages/utils build && bun run --cwd packages/bun build && bun run --cwd packages/web build && bun run --cwd packages/ui build && bun run --cwd packages/testing build && bun run --cwd packages/create-gridland build && bun run --cwd packages/demo build && bun run --cwd packages/docs build",
"check:jsx-sync": "bash scripts/check-jsx-sync.sh",
"test": "bun run check:jsx-sync && bun run --cwd packages/web test && bun run --cwd packages/core test && bun run --cwd packages/utils test && bun run --cwd packages/ui test && bun run --cwd packages/testing test && bun run --cwd packages/create-gridland test && bun run --cwd packages/create-gridland test:e2e && bun run --cwd packages/container test && bun run --cwd packages/container test:e2e && bun run --cwd packages/demo test",
"test:ci": "bun run --cwd packages/web test --randomize --rerun-each 3 && bun run --cwd packages/core test --randomize --rerun-each 3 && bun run --cwd packages/utils test --randomize --rerun-each 3 && bun run --cwd packages/ui test --randomize && bun run --cwd packages/testing test --randomize --rerun-each 3",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots",
"test:e2e:update-baselines": "docker run --rm --platform linux/amd64 -v $(pwd):/work -w /work mcr.microsoft.com/playwright:v1.58.2-noble bash -c 'apt-get update -qq && apt-get install -y -qq unzip > /dev/null 2>&1 && curl -fsSL https://bun.sh/install | bash && export PATH=$HOME/.bun/bin:$PATH && cd /work/e2e/harness && rm -rf node_modules && bun install && cd /work && npx playwright test --update-snapshots'",
"test:e2e:ui": "playwright test --ui",
"ui:build": "bun run --cwd packages/ui build",
"demo": "node packages/demo/bin/cli.mjs",
"demo:dev": "bun --watch packages/demo/src/run.tsx",
"dev": "bun run --cwd packages/docs dev",
"chat:dev": "bun run --cwd packages/chat-worker dev",
"chat:deploy": "bun run --cwd packages/chat-worker deploy",
"docs:build": "bun run --cwd packages/docs build",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"setup": "bun install && bun run build",
"bump": "bun scripts/bump-version.mjs",
"check:versions": "bun scripts/check-versions.mjs",
"publish": "bun scripts/publish.mjs"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14"
},
"dependencies": {
"react-reconciler": "0.33.0"
}
}