-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.94 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
113
114
115
{
"name": "loki-operational",
"version": "2.0.0",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"dev:no-watch": "webpack -c ./webpack.config.ts --env development",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"lint:fix": "yarn run lint --fix && prettier --write --list-different .",
"e2e": "playwright test",
"server": "docker compose up --build",
"server:localLoki": "docker compose -f docker-compose.local-loki.yaml up --build",
"server:ci": "docker compose -f docker-compose.ci.yaml up --build -d",
"server:react19": "yarn build && GRAFANA_VERSION=dev-preview-react19 docker compose -f docker-compose.yaml up --build",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Grafana",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/eslint-config": "8.2.0",
"@grafana/plugin-e2e": "3.7.2",
"@grafana/tsconfig": "2.0.1",
"@playwright/test": "1.55.1",
"@stylistic/eslint-plugin-ts": "2.13.0",
"@swc/core": "1.13.5",
"@swc/jest": "0.2.39",
"@tanstack/react-query-devtools": "5.90.2",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "29.5.14",
"@types/node": "20.19.30",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.45.0",
"@typescript-eslint/parser": "8.45.0",
"autoprefixer": "10.4.23",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.11.0",
"eslint": "9.0.0",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-jsdoc": "51.2.3",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-webpack-plugin": "5.0.0",
"fork-ts-checker-webpack-plugin": "8.0.0",
"glob": "10.5.0",
"identity-obj-proxy": "3.0.0",
"imports-loader": "5.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"monaco-editor-webpack-plugin": "7.1.1",
"postcss": "8.5.10",
"postcss-loader": "8.2.0",
"prettier": "2.8.8",
"replace-in-file-webpack-plugin": "1.0.6",
"sass": "1.63.2",
"sass-loader": "13.3.3",
"style-loader": "3.3.4",
"swc-loader": "0.2.6",
"tailwindcss": "3.4.18",
"terser-webpack-plugin": "5.3.14",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"webpack": "5.104.1",
"webpack-cli": "5.1.4",
"webpack-livereload-plugin": "3.0.2",
"webpack-subresource-integrity": "5.1.0",
"webpack-virtual-modules": "0.6.2"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@grafana/data": "12.4.0",
"@grafana/runtime": "12.4.0",
"@grafana/ui": "12.4.0",
"@hookform/resolvers": "5.2.2",
"@monaco-editor/react": "4.6.0",
"@openfeature/web-sdk": "1.7.3",
"@radix-ui/react-collapsible": "1.1.2",
"@radix-ui/react-dialog": "1.1.5",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-hover-card": "1.1.15",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@radix-ui/react-toggle-group": "1.1.11",
"@radix-ui/react-tooltip": "1.2.8",
"@tanstack/react-query": "5.90.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"date-fns": "4.1.0",
"lucide-react": "0.544.0",
"monaco-editor": "0.50.0",
"prism-react-renderer": "2.4.1",
"react": "18.3.1",
"react-code-block": "1.1.3",
"react-dom": "18.3.1",
"react-hook-form": "7.63.0",
"react-router-dom": "6.30.1",
"recharts": "2.15.4",
"tailwind-merge": "3.3.1",
"zod": "4.3.6"
},
"packageManager": "yarn@4.15.0"
}