-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 3.21 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
{
"name": "ceralive-workspace",
"private": true,
"version": "2026.8.5",
"description": "Monorepo workspace containing CeraUI frontend and CeraLive backend",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/CERALIVE/CeraUI.git"
},
"author": "Andrés Cera",
"license": "GPL-3.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "dotenv -e .env.development -- mprocs",
"dev:single-modem": "MOCK_SCENARIO=single-modem dotenv -e .env.development -- mprocs",
"dev:multi-modem": "MOCK_SCENARIO=multi-modem-wifi dotenv -e .env.development -- mprocs",
"dev:streaming": "MOCK_SCENARIO=streaming-active dotenv -e .env.development -- mprocs",
"dev:modem-pin-locked": "MOCK_SCENARIO=modem-pin-locked dotenv -e .env.development -- mprocs",
"dev:bt-mic-paired": "MOCK_SCENARIO=bt-mic-paired dotenv -e .env.development -- mprocs",
"build": "bun run --filter backend build",
"postbuild": "cp -r ./deployment/* ./dist/",
"build:frontend": "bun run --filter frontend build",
"build:federation": "bun run --filter frontend build:federation",
"test:federation": "bun run build:federation && bun test scripts/federation-assets.test.mjs",
"sign:federation": "bun run scripts/sign-federation.ts",
"test:federation-abi": "bun run build:federation && bun run --filter frontend test:federation-abi",
"build:backend": "bun run --filter backend build:backend-only",
"preview": "bun run --filter frontend preview",
"test": "bun run --filter @ceraui/rpc test && bun run --filter @ceraui/i18n test && bun run --filter frontend test && bun run --filter backend test",
"test:build-check-shape": "bun test scripts/ci/build-check-shape.test.mjs",
"test:release-package-contracts": "bash scripts/build/release-package-contracts.sh",
"test:service-contract": "bash scripts/ci/run-service-contract.sh",
"check:tech-debt": "bun scripts/check-tech-debt.mjs",
"test:tech-debt": "bun test scripts/check-tech-debt.test.mjs",
"check:rc-pins": "bash scripts/check-rc-pins.sh",
"test:e2e": "bun run --filter frontend test:e2e -- --grep-invert \"@visual|@a11y|@gallery|@premigration-upgrade\"",
"test:e2e:visual": "bun run --filter frontend test:e2e -- --grep @visual",
"screenshots": "bun run --filter frontend test:e2e:gallery",
"lint": "biome check . && bun run --filter backend check && bun run --filter @ceraui/rpc check && bun run --filter @ceraui/i18n check && bun run --filter frontend check && bun run --filter backend lint && bun run --filter frontend lint",
"lint:fix": "biome check --write . ; bun run --filter backend lint:fix ; bun run --filter frontend lint:fix",
"clean": "rm -rf dist/ && bun run --filter './apps/*' clean && rm -rf node_modules",
"clean:all": "bun run clean"
},
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@ceralive/biome-config": "^2026.8.0",
"@types/node": "^26.2.0",
"dotenv-cli": "^11.0.0",
"glob": "^13.0.6",
"mprocs": "^0.9.6",
"typescript": "^6.0.3"
},
"volta": {
"node": "26.0.0"
},
"packageManager": "bun@1.4.0",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"typescript": "^6.0.3",
"zod": "^4.4.3"
}
},
"trustedDependencies": [
"@tailwindcss/oxide",
"bun",
"es5-ext",
"esbuild"
]
}