-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 889 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 889 Bytes
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
{
"name": "base_bevr-stack",
"private": true,
"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": "playwright test",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@effect/language-service": "0.85.1",
"@biomejs/biome": "2.4.8",
"@playwright/test": "^1.58.2",
"@types/bun": "^1.3.11",
"turbo": "^2.8.20",
"typescript": "6.0.2",
"vitest": "^4.1.1"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.21",
"workspaces": [
"apps/*",
"packages/*"
]
}