-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "eventer",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome check .",
"lint-staged": "lint-staged",
"test": "turbo run test",
"format": "biome format . --write",
"e2e": "playwright test",
"e2e:report": "playwright show-report",
"prepare": "husky"
},
"optionalDependencies": {
"husky": "^9.1.7"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@playwright/test": "^1.44.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "5.8.2",
"vitest": "^1.5.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.2.8",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.6"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched"
],
"*.{json,md,yml,yaml}": [
"biome format --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.14",
"@supabase/supabase-js": "^2.51.0"
}
}