-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.46 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sub-eye",
"description": "A monorepo template for SubEye subscriptions management app",
"version": "3.11.0",
"author": "Yehor Hunko",
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@cloudflare/workers-types": "^4.20260415.1",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"bun-types": "^1.3.12",
"dependency-cruiser": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"madge": "^8.0.0",
"semantic-release": "^25.0.3",
"syncpack": "^14.3.0",
"turbo": "^2.9.6",
"wrangler": "^4.83.0"
},
"homepage": "https://github.com/yhunko/sub-eye",
"keywords": [
"bun",
"hono",
"monorepo",
"react",
"turbo",
"vite"
],
"license": "MIT",
"packageManager": "bun@1.3.12",
"peerDependencies": {
"typescript": "^6.0.2"
},
"private": true,
"scripts": {
"build": "turbo build",
"build:client": "turbo build --filter=@subeye/client",
"build:server": "turbo build --filter=@subeye/server",
"check:boundaries": "depcruise --config dependency-cruiser.cjs apps packages",
"check:circular": "bun run check:circular:client && bun run check:circular:server",
"check:circular:client": "madge --circular --extensions ts,tsx --ts-config apps/client/tsconfig.app.json apps/client/src",
"check:circular:server": "madge --circular --extensions ts,tsx apps/server/src",
"deploy:dev": "turbo build && wrangler -c dev.wrangler.jsonc deploy --minify",
"deps:fix": "syncpack fix",
"deps:format": "syncpack format",
"deps:lint": "syncpack lint",
"deps:majors": "bun x npm-check-updates --workspaces --root --format group",
"deps:update": "bun x npm-check-updates --workspaces --root --target minor -u && bun install && bun run deps:fix",
"deps:up": "bun x npm-check-updates --workspaces --root --interactive",
"dev": "turbo dev",
"dev:client": "turbo dev --filter=@subeye/client",
"dev:server": "turbo dev --filter=@subeye/server",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky",
"react-doctor": "bun x react-doctor@latest . --yes --project apps/client --diff --offline --fail-on warning --verbose",
"test": "turbo test",
"type-check": "turbo type-check"
},
"workspaces": [
"apps/*",
"packages/*"
]
}