-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.74 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"dependencies": {
"@dockstat/api": "workspace:*",
"@dockstat/db": "workspace:*",
"@dockstat/docker-client": "workspace:*",
"@dockstat/docknode": "workspace:*",
"@dockstat/frontend": "workspace:*",
"@dockstat/logger": "workspace:*",
"@dockstat/plugin-builder": "workspace:*",
"@dockstat/plugin-handler": "workspace:*",
"@dockstat/repo-cli": "workspace:*",
"@dockstat/sqlite-wrapper": "workspace:*",
"@dockstat/template-renderer": "workspace:*",
"@dockstat/theme-handler": "workspace:*",
"@dockstat/typings": "workspace:*",
"@dockstat/ui": "workspace:*",
"@dockstat/utils": "workspace:*",
"bun-types": "latest"
},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"turbo": "^2.8.16",
"typescript": "5.9.3"
},
"engines": {
"bun": ">=1.3.0"
},
"name": "dockstat",
"packageManager": "bun@1.3.6",
"peerDependencies": {
"typescript": "^5"
},
"private": true,
"scripts": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev",
"dev:dockstat": "bun run docker-up:quiet && bun run dev --filter=@dockstat/frontend --filter=@dockstat/api --filter=@dockstat/store-verification --filter=@dockstat/docknode",
"dev:dockstat:no-docker": "bun run dev --filter=@dockstat/frontend --filter=@dockstat/api --filter=@dockstat/store-verification --filter=@dockstat/docknode",
"dev:dockstat/api": "bun run docker-up && bun run dev --filter=@dockstat/api",
"docker-up": "docker compose -f './.dev_env/docker-compose.dev.yaml' up --remove-orphans",
"docker-up:quiet": "bun run docker-up -- -d",
"format:all": "biome format --write .",
"format:check:all": "biome format --check .",
"lint": "turbo run lint",
"lint:all": "biome check .",
"lint:all:ci": "biome check . --reporter=github",
"lint:fix": "turbo run lint:fix",
"lint:fix:all": "biome check --write --assist-enabled=true .",
"lint:gh": "turbo run lint -- --reporter=github",
"pub": "bun run publish --filter=@dockstat/utils --filter=@dockstat/typings --filter=@dockstat/sqlite-wrapper --filter=@dockstat/repo-cli --filter=@dockstat/plugin-builder",
"publish": "turbo run publish"
},
"workspaces": {
"catalog": {
"@elysiajs/cors": "^1.4.0",
"@elysiajs/eden": "1.4.6",
"@elysiajs/html": "^1.4.0",
"@elysiajs/openapi": "^1.4.11",
"@elysiajs/server-timing": "^1.4.0",
"@elysiajs/static": "^1.4.7",
"@types/dagre": "^0.7.54",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.10",
"elysia": "1.4.18",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"catalogs": {
"build-tools": {
"@vitejs/plugin-react": "^5.1.4",
"bun-plugin-dts": "^0.3.0",
"vite": "^7.3.0"
},
"docker": {
"@types/dagre": "^0.7.54",
"@types/dockerode": "^4.0.1",
"dagre": "^0.8.5",
"docker-compose": "^1.3.0",
"dockerode": "^4.0.9"
},
"react-ui": {
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.90.12",
"@xyflow/react": "^12.10.1",
"framer-motion": "^12.34.3",
"geist": "^1.7.0",
"lucide-react": "^0.562.0",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"sonner": "^2.0.7",
"tailwindcss": "^4.2.1"
},
"testing": {
"typescript": "^5.9.3"
},
"utils": {
"@icons-pack/react-simple-icons": "^13.11.2",
"@sglara/cn": "^1.0.0",
"js-yaml": "^4.1.1"
}
},
"packages": [
"apps/*",
"packages/*"
]
}
}