-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.49 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
{
"name": "tablo",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"typecheck": "tsc -p . && tsc -p packages/contract && tsc -p packages/worker && tsc -p packages/web && tsc -p scripts",
"lint": "oxlint",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"build:index": "bun scripts/build-stop-index.ts",
"build:web": "vite build packages/web",
"verify:pwa": "bun scripts/verify-pwa.ts",
"build": "bun run build:index && bun run build:web",
"dev": "alchemy dev",
"deploy": "alchemy deploy",
"destroy": "alchemy destroy",
"prepare": "effect-language-service patch && (lefthook install || true)"
},
"dependencies": {
"@app/contract": "workspace:*",
"effect": "4.0.0-beta.99",
"alchemy": "2.0.0-beta.63",
"@effect/platform-node": "4.0.0-beta.99",
"ws": "^8.20.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@effect/language-service": "^0.86.2",
"@effect/platform-bun": "4.0.0-beta.99",
"@effect/vitest": "4.0.0-beta.99",
"@types/bun": "^1.3.14",
"@types/node": "^24.0.0",
"@types/ws": "^8.5.0",
"lefthook": "^2.1.9",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"typescript": "^6.0.3",
"vite": "^8.0.7",
"vitest": "^4.1.8"
},
"patchedDependencies": {
"@distilled.cloud/core@0.29.1": "patches/@distilled.cloud%2Fcore@0.29.1.patch"
}
}