-
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.47 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.47 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": "peekaboo",
"description": "nginx log viewer",
"packageManager": "bun@1.2.19",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev:web": "turbo run dev --filter=@peekaboo/web",
"dev:api": "turbo run dev --filter=@peekaboo/api",
"dev:shared": "turbo run dev --filter=@peekaboo/shared",
"dev": "turbo dev",
"test:web": "turbo run test --filter=@peekaboo/web",
"test:api": "turbo run test --filter=@peekaboo/api",
"test": "turbo test",
"build": "turbo build",
"lint": "biome lint --write",
"lint:check": "biome lint",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check --write",
"check:check": "biome check",
"release": "semantic-release",
"prepare": "husky"
},
"keywords": ["ssh", "logs", "nginx", "bun", "react"],
"author": "Dino Kupinic",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"semantic-release": "^24.2.3",
"turbo": "^2.5.5"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write ."
]
}
}