-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
114 lines (114 loc) · 3.91 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
{
"name": "clickhouse-monitor",
"description": "Simple ClickHouse UI that relies on system tables to help monitor and provide overview of your cluster",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@1.22.22",
"repository": {
"url": "https://github.com/duyet/clickhouse-monitoring"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:coverage": "nyc --silent node server",
"lint": "next lint",
"cy:open": "start-server-and-test dev http://localhost:3000 \"cypress open\"",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component",
"fmt": "prettier --write \"**/*.{ts,tsx,md,mdx,json}\" --cache",
"test": "jest --coverage",
"jest": "jest --coverage"
},
"dependencies": {
"@clickhouse/client": "^0.3.0",
"@clickhouse/client-web": "^0.3.1",
"@headlessui/tailwindcss": "^0.2.0",
"@hookform/resolvers": "^3.3.3",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-table": "^8.20.5",
"@tremor/react": "^3.18.3",
"@uiw/react-heat-map": "^2.2.1",
"@vercel/analytics": "^1.3.1",
"@vercel/functions": "^1.4.0",
"babel-plugin-react-compiler": "^19.0.0-beta-6fc168f-20241025",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"dayjs": "^1.11.10",
"dedent": "^1.5.3",
"lucide-react": "^0.460.0",
"next": "^15.0.3",
"radix-ui": "^1.0.1",
"react": "^19.0.0-rc-0bc30748-20241028",
"react-dom": "^19.0.0-rc-0bc30748-20241028",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.53.1",
"react-resizable-panels": "^2.1.6",
"recharts": "^2.13.1",
"server-only-context": "^0.1.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@codecov/webpack-plugin": "^1.0.0",
"@cypress/code-coverage": "^3.12.46",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@next/eslint-plugin-next": "^15.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.0.1",
"cypress": "^13.15.1",
"cypress-real-events": "^1.13.0",
"eslint": "^8",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"start-server-and-test": "^2.0.3",
"ts-jest": "^29.2.5",
"turbo": "^2.0.6",
"typescript": "^5"
},
"overrides": {
"react": "^19.0.0-rc-0bc30748-20241028",
"react-dom": "^19.0.0-rc-0bc30748-20241028",
"react-is": "^19.0.0-rc-0bc30748-20241028",
"@tremor/react": {
"recharts": "^2.13.1"
},
"recharts": {
"react-is": "^19.0.0-rc-0bc30748-20241028"
}
}
}