-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.06 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
{
"name": "clastix-clastix-dashboard",
"engines": {
"node": "^v18.18.0"
},
"version": "0.2.0",
"private": true,
"scripts": {
"generate": "openapi-generator-cli generate -g typescript-node -i http://localhost:8080/openapi/v2 -o src/gen",
"build": "SKIP_ENV_VALIDATION=1 next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"cypress-e2e": "cypress open --e2e",
"e2e": "start-server-and-test dev http://localhost:3000 cypress-e2e"
},
"dependencies": {
"@codemirror/fold": "^0.19.4",
"@codemirror/language": "^6.10.8",
"@codemirror/legacy-modes": "^6.4.3",
"@codemirror/stream-parser": "^0.19.9",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@kubernetes/client-node": "^0.18.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^4.29.14",
"@trpc/client": "^10.30.0",
"@trpc/next": "^10.30.0",
"@trpc/react-query": "^10.30.0",
"@trpc/server": "^10.30.0",
"@uiw/react-codemirror": "^4.21.3",
"@xstate/react": "^3.2.2",
"bufferutil": "^4.0.7",
"clsx": "^2.1.1",
"daisyui": "^3.5.1",
"date-fns": "^4.1.0",
"final-form": "^4.20.9",
"fuse.js": "^7.1.0",
"jsonwebtoken": "^9.0.0",
"next": "15.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-final-form": "^6.5.9",
"superjson": "2.2.2",
"utf-8-validate": "^6.0.3",
"xstate": "^4.37.2",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"yaml": "^2.3.1",
"zod": "^3.22.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@openapitools/openapi-generator-cli": "^2.15.3",
"@storybook/addon-essentials": "^8.6.8",
"@storybook/addon-interactions": "^8.6.8",
"@storybook/addon-links": "^8.6.8",
"@storybook/blocks": "^8.6.8",
"@storybook/nextjs": "^8.6.9",
"@storybook/react": "^8.6.8",
"@storybook/test": "^8.6.8",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^22.13.10",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.14",
"cypress": "^14.1.0",
"eslint": "^9.22.0",
"eslint-config-next": "15.2.2",
"eslint-plugin-storybook": "^0.11.6",
"jsdom": "^26.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.5.0",
"start-server-and-test": "^2.0.0",
"storybook": "^8.6.8",
"tailwindcss": "^3.3.2",
"testcontainers": "^10.19.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"resolutions": {
"@codemirror/state": "6.5.2",
"@codemirror/language": "6.10.8",
"@codemirror/view": "6.36.4"
},
"overrides": {
"@codemirror/state": "6.5.2"
},
"ct3aMetadata": {
"initVersion": "7.2.0"
}
}