-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "stack-effect",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && git clean -xdf node_modules .cache .turbo dist tsconfig.tsbuildinfo playwright-report test-results",
"dev": "turbo run dev",
"lint": "biome lint .",
"format": "biome check --write .",
"format:check": "biome check .",
"prepare": "effect-language-service patch",
"test": "turbo run test",
"test:e2e": "vitest run --config vitest.e2e.config.ts --root apps/cli",
"start": "bun apps/cli/src/index.ts",
"type-check": "turbo run type-check",
"complexity": "bun run scripts/complexity-report.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@effect/language-service": "^0.86.1",
"@effect/platform-bun": "4.0.0-beta.67",
"@types/bun": "^1.3.14",
"effect": "4.0.0-beta.67",
"turbo": "^2.9.14",
"typescript": "6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.2.21",
"workspaces": [
"apps/*",
"packages/*"
]
}