-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.78 KB
/
package.json
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
113
114
115
116
117
118
119
120
121
122
{
"name": "hivepanel",
"description": "Get your swarm together with 📦 hivepanel, a Docker Swarm control panel",
"version": "0.7.0",
"private": false,
"license": "UNLICENSED",
"bin": {
"hive": "bundle/bin.cjs",
"hivepanel": "bundle/bin.cjs"
},
"scripts": {
"dev": "vite-node --watch src/server.dev.ts",
"build": "vite build && pkgroll --dist bundle",
"start": "node server.mjs",
"cli": "node bin.mjs",
"test": "vitest",
"testleave": "FORCE_LEAVE_SWARM=1 vitest",
"lint": "eslint --fix \"src/**\" && prettier -l --write .",
"fix": "prettier --write .",
"prepare": "yarn build",
"postversion": "git push --tags",
"docker": "yarn dbuild && yarn drun",
"dd": "yarn build && docker build . -t thgh/hivepanel:dev",
"dbuild": "yarn build && docker build . -t thgh/hivepanel",
"dbuildx": "yarn build && docker buildx build . -t thgh/hivepanel -o type=image --platform=linux/amd64,linux/arm64/v8",
"dbuildxp": "yarn build && docker buildx build . -t thgh/hivepanel -o type=image --platform=linux/amd64,linux/arm64/v8 --push",
"drun": "docker run --rm -i -v /var/run/docker.sock:/var/run/docker.sock:ro -e PORT=23077 -p 23077:23077 thgh/hivepanel",
"dpush": "docker push thgh/hivepanel"
},
"imports": {
"@": "src"
},
"exports": {
".": {
"import": "./bundle/index.mjs",
"require": "./bundle/index.cjs"
},
"./server": {
"import": "./bundle/server.mjs",
"require": "./bundle/server.cjs"
},
"./client": {
"import": "./bundle/client.mjs",
"require": "./bundle/client.cjs"
},
"./bin": {
"import": "./bundle/bin.mjs",
"require": "./bundle/bin.cjs"
}
},
"files": [
"./bundle",
"./dist"
],
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@radix-ui/react-hover-card": "^1.0.7",
"react-hook-form": "^7.46.2",
"sonner": "^1.3.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-table": "^8.10.1",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.4",
"@types/dockerode": "^3.3.19",
"@types/express": "^4.17.17",
"@types/node": "^20.6.3",
"@types/prompts": "^2.4.5",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/tar-stream": "^3.1.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/ui": "^1",
"autoprefixer": "^10.4.16",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"cookie-parser": "^1.4.6",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"express": "^4.18.2",
"lucide-react": "^0.321",
"native-dns": "^0.7.0",
"pkgroll": "^2.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"swr": "^2.2.2",
"tailwind-merge": "^2",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"tar-stream": "^3.1.7",
"typescript": "^5.2.2",
"vite": "^5",
"vite-node": "^1",
"vitest": "^1",
"ws": "^8.16.0"
}
}