-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.82 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
{
"name": "containers-up",
"version": "1.4.6",
"description": "Containers Up! a web based platform designed to manage and update containers",
"author": "DigitallyRefined",
"license": "ISC",
"homepage": "https://github.com/DigitallyRefined/containers-up#readme",
"repository": {
"type": "git",
"url": "https://github.com/DigitallyRefined/containers-up.git"
},
"private": true,
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"dev": "bun --hot src",
"start": "NODE_ENV=production bun src",
"build": "bun run build.ts",
"lint": "bunx biome check --write",
"update-dependencies": "bun update --interactive"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@js-temporal/polyfill": "^0.5.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.100.9",
"@tanstack/react-query-devtools": "^5.100.9",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jose": "^6.2.3",
"lucide-react": "^1.14.0",
"oidc-client-ts": "^3.5.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.75.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@tailwindcss/cli": "^4.3.0",
"@types/bun": "^1.3.13",
"@types/pino": "^7.0.5",
"@types/pino-pretty": "^5.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3"
}
}